pub type Lookup<'a, T> = TableRef<'a, LookupMarker<T>>;
Expand description
Aliased Type§
pub struct Lookup<'a, T> {
pub(crate) shape: LookupMarker<T>,
pub(crate) data: FontData<'a>,
}
Fields§
§shape: LookupMarker<T>
§data: FontData<'a>
Implementations§
Source§impl<'a, T> Lookup<'a, T>
impl<'a, T> Lookup<'a, T>
Sourcepub(crate) fn of_unit_type(&self) -> Lookup<'a, ()>
pub(crate) fn of_unit_type(&self) -> Lookup<'a, ()>
Replace the specific generic type on this implementation with ()
Source§impl<'a, T> Lookup<'a, T>
impl<'a, T> Lookup<'a, T>
Sourcepub fn lookup_type(&self) -> u16
pub fn lookup_type(&self) -> u16
Different enumerations for GSUB and GPOS
Sourcepub fn lookup_flag(&self) -> LookupFlag
pub fn lookup_flag(&self) -> LookupFlag
Lookup qualifiers
Sourcepub fn sub_table_count(&self) -> u16
pub fn sub_table_count(&self) -> u16
Number of subtables for this lookup
Sourcepub fn subtable_offsets(&self) -> &'a [BigEndian<Offset16>]
pub fn subtable_offsets(&self) -> &'a [BigEndian<Offset16>]
Array of offsets to lookup subtables, from beginning of Lookup table
Sourcepub fn subtables(&self) -> ArrayOfOffsets<'a, T, Offset16>where
T: FontRead<'a>,
pub fn subtables(&self) -> ArrayOfOffsets<'a, T, Offset16>where
T: FontRead<'a>,
A dynamically resolving wrapper for subtable_offsets
.
Sourcepub fn mark_filtering_set(&self) -> Option<u16>
pub fn mark_filtering_set(&self) -> Option<u16>
Index (base 0) into GDEF mark glyph sets structure. This field is only present if the USE_MARK_FILTERING_SET lookup flag is set.