[][src]Struct gatherr::Gatherr

pub struct Gatherr<T, E>(pub Result<T, E>);

A newtype implementing FromIterator to collect into a result preserving all error values, instead of just the first as FromIterator for Result does

let v = vec![Ok("a"), Err(1), Ok("b"), Err(2)];

let Gatherr(result): Gatherr<Vec<&str>, Vec<u32>>
    = v.into_iter().collect();

assert_eq!(result, Err(vec![1, 2]));

Using this directly can be awkward due to the necessary additional type annotation. Consider using the extension trait method or the freestanding gatherr function instead

Trait Implementations

impl<A, B, T: FromIterator<A>, E: FromIterator<B>> FromIterator<Result<A, B>> for Gatherr<T, E>[src]

Auto Trait Implementations

impl<T, E> RefUnwindSafe for Gatherr<T, E> where
    E: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, E> Send for Gatherr<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for Gatherr<T, E> where
    E: Sync,
    T: Sync

impl<T, E> Unpin for Gatherr<T, E> where
    E: Unpin,
    T: Unpin

impl<T, E> UnwindSafe for Gatherr<T, E> where
    E: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.