pub struct FontLayout {
pub ascent: u16,
pub descent: u16,
pub leading: i16,
pub kerning: Vec<KerningRecord>,
}Fields§
§ascent: u16§descent: u16§leading: i16§kerning: Vec<KerningRecord>Trait Implementations§
Source§impl Clone for FontLayout
impl Clone for FontLayout
Source§fn clone(&self) -> FontLayout
fn clone(&self) -> FontLayout
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FontLayout
impl Debug for FontLayout
Source§impl PartialEq for FontLayout
impl PartialEq for FontLayout
impl Eq for FontLayout
impl StructuralPartialEq for FontLayout
Auto Trait Implementations§
impl Freeze for FontLayout
impl RefUnwindSafe for FontLayout
impl Send for FontLayout
impl Sync for FontLayout
impl Unpin for FontLayout
impl UnwindSafe for FontLayout
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