pub struct Table<'a> {
    data: &'a [u8],
    variation_store: ItemVariationStore<'a>,
    advance_width_mapping_offset: Option<Offset32>,
    lsb_mapping_offset: Option<Offset32>,
    rsb_mapping_offset: Option<Offset32>,
}Expand description
Fields§
§data: &'a [u8]§variation_store: ItemVariationStore<'a>§advance_width_mapping_offset: Option<Offset32>§lsb_mapping_offset: Option<Offset32>§rsb_mapping_offset: Option<Offset32>Implementations§
Source§impl<'a> Table<'a>
 
impl<'a> Table<'a>
Sourcepub fn advance_offset(
    &self,
    glyph_id: GlyphId,
    coordinates: &[NormalizedCoordinate],
) -> Option<f32>
 
pub fn advance_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the advance width offset for a glyph.
Sourcepub fn left_side_bearing_offset(
    &self,
    glyph_id: GlyphId,
    coordinates: &[NormalizedCoordinate],
) -> Option<f32>
 
pub fn left_side_bearing_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the left side bearing offset for a glyph.
Sourcepub fn right_side_bearing_offset(
    &self,
    glyph_id: GlyphId,
    coordinates: &[NormalizedCoordinate],
) -> Option<f32>
 
pub fn right_side_bearing_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the right side bearing offset for a glyph.
fn side_bearing_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], set_data: &[u8], ) -> Option<f32>
Trait Implementations§
impl<'a> Copy for Table<'a>
Auto Trait Implementations§
impl<'a> Freeze for Table<'a>
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> Send for Table<'a>
impl<'a> Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'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