Struct allsorts_no_std::layout::LookupList[][src]

pub struct LookupList<T> { /* fields omitted */ }

Implementations

impl<T: LayoutTableType> LookupList<T>[src]

pub fn lookup(&self, lookup_index: usize) -> Result<Lookup<'_, T>, ParseError>[src]

impl LookupList<GSUB>[src]

pub fn lookup_cache_gsub(
    &self,
    cache: &LayoutCache<GSUB>,
    lookup_index: usize
) -> Result<Rc<LookupCacheItem<SubstLookup>>, ParseError>
[src]

impl LookupList<GPOS>[src]

pub fn lookup_cache_gpos(
    &self,
    cache: &LayoutCache<GPOS>,
    lookup_index: usize
) -> Result<Rc<LookupCacheItem<PosLookup>>, ParseError>
[src]

Trait Implementations

impl<'a, T> ReadBinary<'a> for LookupList<T>[src]

type HostType = Self

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> ReadBinaryDep<'a> for T where
    T: ReadBinary<'a>, 
[src]

type Args = ()

type HostType = <T as ReadBinary<'a>>::HostType

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.