[][src]Trait beau_collector::BeauCollector

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

Required methods

fn bcollect<I>(self) -> Result<I> where
    I: FromIterator<T>, 

Loading content...

Implementors

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

Loading content...