pub trait FromFallibleIterator<T>: Sized {
    fn from_fallible_iterator<I>(it: I) -> Result<Self, I::Error>
    where
        I: IntoFallibleIterator<Item = T>
; }
Expand description

Conversion from a fallible iterator.

Required Methods§

Creates a value from a fallible iterator.

Implementations on Foreign Types§

Implementors§