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 duplicate 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