[][src]Trait beau_collector::BeauCollector

pub trait BeauCollector<I, T> where
    I: FromIterator<T>, 
{ fn bcollect(self) -> Result<I>; }

Required methods

fn bcollect(self) -> Result<I>

Loading content...

Implementors

impl<I, T, U, E> BeauCollector<I, T> for U where
    U: Iterator<Item = Result<T, E>>,
    E: Into<Error> + Debug,
    I: FromIterator<T>,
    T: Debug
[src]

Loading content...