pub type SequenceList<'a> = LazyOffsetArray16<'a, Sequence<'a>>;
Expand description
A list of Sequence
tables.
Aliased Type§
struct SequenceList<'a> {
data: &'a [u8],
offsets: LazyArray16<'a, Option<Offset16>>,
data_type: PhantomData<Sequence<'a>>,
}
Fields§
§data: &'a [u8]
§offsets: LazyArray16<'a, Option<Offset16>>
§data_type: PhantomData<Sequence<'a>>
Implementations
Source§impl<'a, T: FromSlice<'a>> LazyOffsetArray16<'a, T>
impl<'a, T: FromSlice<'a>> LazyOffsetArray16<'a, T>
Trait Implementations
Source§impl<'a, T: Clone + FromSlice<'a>> Clone for LazyOffsetArray16<'a, T>
impl<'a, T: Clone + FromSlice<'a>> Clone for LazyOffsetArray16<'a, T>
Source§fn clone(&self) -> LazyOffsetArray16<'a, T>
fn clone(&self) -> LazyOffsetArray16<'a, T>
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 more