IterItem

Trait IterItem 

Source
pub trait IterItem {
    type Item;
}
Expand description

A kind of item that an IterVTable returns

This trait is needed as a utility, so the functions within IterVTable can apply the appropriate type to their result types.

Required Associated Types§

Source

type Item

The output type of the iterator

Implementations on Foreign Types§

Source§

impl<T, U> IterItem for (T, U)
where T: IterItem, U: IterItem,

Source§

type Item = (<T as IterItem>::Item, <U as IterItem>::Item)

Implementors§