pub trait FromFallibleIterator<T>: Sized {
fn from_fallible_iter<I>(it: I) -> Result<Self, I::Error>
where
I: IntoFallibleIterator<Item = T>;
}
Expand description
Conversion from a fallible iterator.
Required methods
fn from_fallible_iter<I>(it: I) -> Result<Self, I::Error> where
I: IntoFallibleIterator<Item = T>,
fn from_fallible_iter<I>(it: I) -> Result<Self, I::Error> where
I: IntoFallibleIterator<Item = T>,
Creates a value from a fallible iterator.