[][src]Trait veho::columns::Mappers

pub trait Mappers<R>: IntoIterator<Item = R> where
    R: IntoIterator
{ pub fn mapper<P, F>(self, mut f: F) -> Vec<P>
    where
        Self: Sized,
        F: FnMut(Vec<R::Item>) -> P
, { ... } }

Provided methods

pub fn mapper<P, F>(self, mut f: F) -> Vec<P> where
    Self: Sized,
    F: FnMut(Vec<R::Item>) -> P, 
[src]

Loading content...

Implementors

impl<R, M> Mappers<R> for M where
    M: IntoIterator<Item = R>,
    R: IntoIterator
[src]

Loading content...