[][src]Trait tract_onnx::pb_helpers::TryCollect

pub trait TryCollect<T, E>: Iterator<Item = Result<T, E>> + Sized {
#[must_use]    fn try_collect<B: Default + Extend<T>>(self) -> Result<B, E> { ... }
}

Provided methods

#[must_use]fn try_collect<B: Default + Extend<T>>(self) -> Result<B, E>

Loading content...

Implementors

impl<T, E, I> TryCollect<T, E> for I where
    I: Iterator<Item = Result<T, E>> + Sized
[src]

Loading content...