pub type LigatureSets<'a> = LazyOffsetArray16<'a, LigatureSet<'a>>;
Expand description
A list of Ligature
sets.
Aliased Type§
struct LigatureSets<'a> {
data: &'a [u8],
offsets: LazyArray16<'a, Option<Offset16>>,
data_type: PhantomData<LazyOffsetArray16<'a, Ligature<'a>>>,
}
Fields§
§data: &'a [u8]
§offsets: LazyArray16<'a, Option<Offset16>>
§data_type: PhantomData<LazyOffsetArray16<'a, Ligature<'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