Type Alias ttf_parser::opentype_layout::FeatureList
source · pub type FeatureList<'a> = RecordList<'a, Feature<'a>>;
Expand description
A list of Feature
records.
Aliased Type§
struct FeatureList<'a> {
data: &'a [u8],
records: LazyArray16<'a, TagRecord>,
data_type: PhantomData<Feature<'a>>,
}
Fields§
§data: &'a [u8]
§records: LazyArray16<'a, TagRecord>
§data_type: PhantomData<Feature<'a>>