[][src]Trait zdex::ZdexedIter

pub trait ZdexedIter {
    fn z_index(self) -> Result<Vob>;
}

A trait for implementing Zdexed over iterables. A blanket implementation is provided for IntoIter<T: Zdexed>.

Required methods

fn z_index(self) -> Result<Vob>

Loading content...

Implementors

impl<T, U> ZdexedIter for T where
    T: IntoIterator<Item = U>,
    U: Zdexed
[src]

Loading content...