pub struct ExtendedStateTable<'a, T = NoPayload> { /* private fields */ }
Implementations§
Source§impl<T> ExtendedStateTable<'_, T>
impl<T> ExtendedStateTable<'_, T>
pub const HEADER_LEN: usize = 16usize
Source§impl<T> ExtendedStateTable<'_, T>where
T: FixedSize + AnyBitPattern,
Table for driving a finite state machine for layout.
impl<T> ExtendedStateTable<'_, T>where
T: FixedSize + AnyBitPattern,
Table for driving a finite state machine for layout.
The input to the state machine consists of the current state and a glyph class. The output is an entry containing the next state and a payload that is dependent on the type of layout action being performed.
See https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6Tables.html#StateHeader for more detail.
Trait Implementations§
Source§impl<'a, T: Clone> Clone for ExtendedStateTable<'a, T>
impl<'a, T: Clone> Clone for ExtendedStateTable<'a, T>
Source§fn clone(&self) -> ExtendedStateTable<'a, T>
fn clone(&self) -> ExtendedStateTable<'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 moreAuto Trait Implementations§
impl<'a, T> Freeze for ExtendedStateTable<'a, T>
impl<'a, T> RefUnwindSafe for ExtendedStateTable<'a, T>
impl<'a, T> Send for ExtendedStateTable<'a, T>
impl<'a, T> Sync for ExtendedStateTable<'a, T>
impl<'a, T> Unpin for ExtendedStateTable<'a, T>
impl<'a, T> UnwindSafe for ExtendedStateTable<'a, T>
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