pub struct RecordList<'a, T: RecordListItem<'a>> {
    data: &'a [u8],
    records: LazyArray16<'a, TagRecord>,
    data_type: PhantomData<T>,
}Expand description
A data storage used by ScriptList, LanguageSystemList and FeatureList data types.
Fields§
§data: &'a [u8]§records: LazyArray16<'a, TagRecord>§data_type: PhantomData<T>Implementations§
Source§impl<'a, T: RecordListItem<'a>> RecordList<'a, T>
 
impl<'a, T: RecordListItem<'a>> RecordList<'a, T>
Trait Implementations§
Source§impl<'a, T: Clone + RecordListItem<'a>> Clone for RecordList<'a, T>
 
impl<'a, T: Clone + RecordListItem<'a>> Clone for RecordList<'a, T>
Source§fn clone(&self) -> RecordList<'a, T>
 
fn clone(&self) -> RecordList<'a, T>
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, T: Debug + RecordListItem<'a>> Debug for RecordList<'a, T>
 
impl<'a, T: Debug + RecordListItem<'a>> Debug for RecordList<'a, T>
Source§impl<'a, T: RecordListItem<'a>> IntoIterator for RecordList<'a, T>
 
impl<'a, T: RecordListItem<'a>> IntoIterator for RecordList<'a, T>
impl<'a, T: Copy + RecordListItem<'a>> Copy for RecordList<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for RecordList<'a, T>
impl<'a, T> RefUnwindSafe for RecordList<'a, T>where
    T: RefUnwindSafe,
impl<'a, T> Send for RecordList<'a, T>where
    T: Send,
impl<'a, T> Sync for RecordList<'a, T>where
    T: Sync,
impl<'a, T> Unpin for RecordList<'a, T>where
    T: Unpin,
impl<'a, T> UnwindSafe for RecordList<'a, T>where
    T: UnwindSafe,
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