Struct write_fonts::tables::layout::LookupList
source · pub struct LookupList<T> {
pub lookups: Vec<OffsetMarker<T>>,
}Expand description
Fields§
§lookups: Vec<OffsetMarker<T>>Array of offsets to Lookup tables, from beginning of LookupList — zero based (first lookup is Lookup index = 0)
Implementations§
Trait Implementations§
source§impl<T: Clone> Clone for LookupList<T>
impl<T: Clone> Clone for LookupList<T>
source§fn clone(&self) -> LookupList<T>
fn clone(&self) -> LookupList<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 moresource§impl<T: Debug> Debug for LookupList<T>
impl<T: Debug> Debug for LookupList<T>
source§impl<T: Default> Default for LookupList<T>
impl<T: Default> Default for LookupList<T>
source§fn default() -> LookupList<T>
fn default() -> LookupList<T>
Returns the “default value” for a type. Read more
source§impl<'a> FontRead<'a> for LookupList<PositionLookup>
impl<'a> FontRead<'a> for LookupList<PositionLookup>
source§impl<'a> FontRead<'a> for LookupList<SubstitutionLookup>
impl<'a> FontRead<'a> for LookupList<SubstitutionLookup>
source§impl<T: FontWrite> FontWrite for LookupList<T>
impl<T: FontWrite> FontWrite for LookupList<T>
source§fn write_into(&self, writer: &mut TableWriter)
fn write_into(&self, writer: &mut TableWriter)
Write our data and information about offsets into this TableWriter.
fn name(&self) -> &'static str
source§impl<T: Validate> Validate for LookupList<T>
impl<T: Validate> Validate for LookupList<T>
source§fn validate_impl(&self, ctx: &mut ValidationCtx)
fn validate_impl(&self, ctx: &mut ValidationCtx)
Validate this table. Read more
Auto Trait Implementations§
impl<T> RefUnwindSafe for LookupList<T>where T: RefUnwindSafe,
impl<T> Send for LookupList<T>where T: Send,
impl<T> Sync for LookupList<T>where T: Sync,
impl<T> Unpin for LookupList<T>where T: Unpin,
impl<T> UnwindSafe for LookupList<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
source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere U: FromObjRef<T>,
source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.