Struct owned_ttf_parser::math::KernInfo
source · pub struct KernInfo<'a> {
pub top_right: Option<Kern<'a>>,
pub top_left: Option<Kern<'a>>,
pub bottom_right: Option<Kern<'a>>,
pub bottom_left: Option<Kern<'a>>,
}
Expand description
Fields§
§top_right: Option<Kern<'a>>
The kerning data for the top-right corner.
top_left: Option<Kern<'a>>
The kerning data for the top-left corner.
bottom_right: Option<Kern<'a>>
The kerning data for the bottom-right corner.
bottom_left: Option<Kern<'a>>
The kerning data for the bottom-left corner.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for KernInfo<'a>
impl<'a> RefUnwindSafe for KernInfo<'a>
impl<'a> Send for KernInfo<'a>
impl<'a> Sync for KernInfo<'a>
impl<'a> Unpin for KernInfo<'a>
impl<'a> UnwindSafe for KernInfo<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more