[][src]Trait basin2_lib::ilib::TryCollect

pub trait TryCollect<K>: Iterator {
    fn try_collect<B: FromIterator<K>>(self) -> Result<B>
    where
        Self: Sized
; }

Required methods

fn try_collect<B: FromIterator<K>>(self) -> Result<B> where
    Self: Sized

Loading content...

Implementors

impl<K, T: Iterator<Item = Result<K>>> TryCollect<K> for T[src]

Loading content...