pub struct FeatureList<'a> { /* private fields */ }Expand description
Parsed FeatureList table (chapter 2 §“FeatureList table”).
Layout:
0 / 2 / featureCount
2 / 6 / featureRecords[] // (tag[4] + featureOffset[2])The records “should be” sorted by tag (the spec phrase “alphabetically by feature tag” is “should”) but ties on a tag are allowed because a feature implementation may differ per script / language system. Iteration order is on-disk; tag lookup is linear.
Implementations§
Source§impl<'a> FeatureList<'a>
impl<'a> FeatureList<'a>
Trait Implementations§
Source§impl<'a> Clone for FeatureList<'a>
impl<'a> Clone for FeatureList<'a>
Source§fn clone(&self) -> FeatureList<'a>
fn clone(&self) -> FeatureList<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for FeatureList<'a>
Auto Trait Implementations§
impl<'a> Freeze for FeatureList<'a>
impl<'a> RefUnwindSafe for FeatureList<'a>
impl<'a> Send for FeatureList<'a>
impl<'a> Sync for FeatureList<'a>
impl<'a> Unpin for FeatureList<'a>
impl<'a> UnsafeUnpin for FeatureList<'a>
impl<'a> UnwindSafe for FeatureList<'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