[][src]Trait abi_stable::erased_types::traits::IteratorItemOrDefault

pub trait IteratorItemOrDefault<'borr>: InterfaceType {
    type Item;
}

Gets the Item type of an Iterator.

Used by DynTrait's vtable to give its iter a default type, when I:InterfaceType<Iterator=Implemented<_>>.

Associated Types

type Item

Loading content...

Implementors

impl<'borr, I, Item> IteratorItemOrDefault<'borr> for I where
    I: InterfaceType,
    I: IteratorItemOrDefaultHelper<'borr, <I as InterfaceType>::Iterator, Item = Item>, 
[src]

type Item = Item

Loading content...