pub struct LanguageSystem<'a> {
    pub tag: Tag,
    pub required_feature: Option<FeatureIndex>,
    pub feature_indices: LazyArray16<'a, FeatureIndex>,
}Expand description
Fields§
§tag: TagLanguage tag.
required_feature: Option<FeatureIndex>Index of a feature required for this language system.
feature_indices: LazyArray16<'a, FeatureIndex>Array of indices into the FeatureList, in arbitrary order.
Trait Implementations§
Source§impl<'a> Clone for LanguageSystem<'a>
 
impl<'a> Clone for LanguageSystem<'a>
Source§fn clone(&self) -> LanguageSystem<'a>
 
fn clone(&self) -> LanguageSystem<'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 LanguageSystem<'a>
 
impl<'a> Debug for LanguageSystem<'a>
Source§impl<'a> RecordListItem<'a> for LanguageSystem<'a>
 
impl<'a> RecordListItem<'a> for LanguageSystem<'a>
impl<'a> Copy for LanguageSystem<'a>
Auto Trait Implementations§
impl<'a> Freeze for LanguageSystem<'a>
impl<'a> RefUnwindSafe for LanguageSystem<'a>
impl<'a> Send for LanguageSystem<'a>
impl<'a> Sync for LanguageSystem<'a>
impl<'a> Unpin for LanguageSystem<'a>
impl<'a> UnwindSafe for LanguageSystem<'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