pub struct Lookup<T> { /* private fields */ }Implementations§
Source§impl<T> Lookup<T>
impl<T> Lookup<T>
pub fn new( lookup_type: u16, lookup_flag: u16, subtable_count: u16, subtable_offsets: Vec<u16>, subtables: Vec<T>, mark_filtering_set: Option<u16>, ) -> Self
pub fn lookup_type(&self) -> u16
pub fn lookup_flag(&self) -> u16
pub fn subtable_count(&self) -> u16
pub fn subtable_offsets(&self) -> &[u16]
pub fn subtables(&self) -> &[T]
pub fn mark_filtering_set(&self) -> Option<u16>
Auto Trait Implementations§
impl<T> Freeze for Lookup<T>
impl<T> RefUnwindSafe for Lookup<T>where
T: RefUnwindSafe,
impl<T> Send for Lookup<T>where
T: Send,
impl<T> Sync for Lookup<T>where
T: Sync,
impl<T> Unpin for Lookup<T>where
T: Unpin,
impl<T> UnsafeUnpin for Lookup<T>
impl<T> UnwindSafe for Lookup<T>where
T: UnwindSafe,
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