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