pub struct ChainedSequenceRule<'a> {
pub backtrack: LazyArray16<'a, u16>,
pub input: LazyArray16<'a, u16>,
pub lookahead: LazyArray16<'a, u16>,
pub lookups: LazyArray16<'a, SequenceLookupRecord>,
}
Expand description
Fields§
§backtrack: LazyArray16<'a, u16>
Contains either glyph IDs or glyph Classes.
input: LazyArray16<'a, u16>
§lookahead: LazyArray16<'a, u16>
Contains either glyph IDs or glyph Classes.
lookups: LazyArray16<'a, SequenceLookupRecord>
Trait Implementations§
source§impl<'a> Clone for ChainedSequenceRule<'a>
impl<'a> Clone for ChainedSequenceRule<'a>
source§fn clone(&self) -> ChainedSequenceRule<'a>
fn clone(&self) -> ChainedSequenceRule<'a>
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 moresource§impl<'a> Debug for ChainedSequenceRule<'a>
impl<'a> Debug for ChainedSequenceRule<'a>
impl<'a> Copy for ChainedSequenceRule<'a>
Auto Trait Implementations§
impl<'a> Freeze for ChainedSequenceRule<'a>
impl<'a> RefUnwindSafe for ChainedSequenceRule<'a>
impl<'a> Send for ChainedSequenceRule<'a>
impl<'a> Sync for ChainedSequenceRule<'a>
impl<'a> Unpin for ChainedSequenceRule<'a>
impl<'a> UnwindSafe for ChainedSequenceRule<'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