struct FeatureTableSubstitution<'a> {
data: &'a [u8],
records: LazyArray16<'a, FeatureTableSubstitutionRecord>,
}
Fields§
§data: &'a [u8]
§records: LazyArray16<'a, FeatureTableSubstitutionRecord>
Implementations§
source§impl<'a> FeatureTableSubstitution<'a>
impl<'a> FeatureTableSubstitution<'a>
fn parse(data: &'a [u8]) -> Option<Self>
fn find_substitute(&self, feature_index: FeatureIndex) -> Option<Feature<'a>>
Trait Implementations§
source§impl<'a> Clone for FeatureTableSubstitution<'a>
impl<'a> Clone for FeatureTableSubstitution<'a>
source§fn clone(&self) -> FeatureTableSubstitution<'a>
fn clone(&self) -> FeatureTableSubstitution<'a>
Returns a copy 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<'a> Debug for FeatureTableSubstitution<'a>
impl<'a> Debug for FeatureTableSubstitution<'a>
impl<'a> Copy for FeatureTableSubstitution<'a>
Auto Trait Implementations§
impl<'a> Freeze for FeatureTableSubstitution<'a>
impl<'a> RefUnwindSafe for FeatureTableSubstitution<'a>
impl<'a> Send for FeatureTableSubstitution<'a>
impl<'a> Sync for FeatureTableSubstitution<'a>
impl<'a> Unpin for FeatureTableSubstitution<'a>
impl<'a> UnwindSafe for FeatureTableSubstitution<'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