Enum allsorts_no_std::layout::SmartLookupSubtableIter[][src]

pub enum SmartLookupSubtableIter<'a, 'b, T: LayoutTableType> {
    Normal(T::BaseLookupTypeLookupSubtableIter<'a, 'b, T>),
    Extension(ExtensionLookupSubtableIter<'a, 'b, T>),
}

Variants

Normal(T::BaseLookupTypeLookupSubtableIter<'a, 'b, T>)
Extension(ExtensionLookupSubtableIter<'a, 'b, T>)

Implementations

impl<'a, 'b, T: LayoutTableType> SmartLookupSubtableIter<'a, 'b, T>[src]

pub fn get_lookup_type(&mut self) -> T::BaseLookupType[src]

Trait Implementations

impl<'a, 'b, T: LayoutTableType> Iterator for SmartLookupSubtableIter<'a, 'b, T>[src]

type Item = Result<ReadScope<'a>, ParseError>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, 'b, T> RefUnwindSafe for SmartLookupSubtableIter<'a, 'b, T> where
    T: RefUnwindSafe,
    <T as LayoutTableType>::BaseLookupType: RefUnwindSafe

impl<'a, 'b, T> Send for SmartLookupSubtableIter<'a, 'b, T> where
    T: Sync,
    <T as LayoutTableType>::BaseLookupType: Send + Sync

impl<'a, 'b, T> Sync for SmartLookupSubtableIter<'a, 'b, T> where
    T: Sync,
    <T as LayoutTableType>::BaseLookupType: Sync

impl<'a, 'b, T> Unpin for SmartLookupSubtableIter<'a, 'b, T> where
    <T as LayoutTableType>::BaseLookupType: Unpin,
    'a: 'b, 

impl<'a, 'b, T> UnwindSafe for SmartLookupSubtableIter<'a, 'b, T> where
    T: RefUnwindSafe,
    <T as LayoutTableType>::BaseLookupType: RefUnwindSafe + 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

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.