Trait FlattenResultErrors

Source
pub trait FlattenResultErrors<T, L, E> {
    // Required method
    fn flatten_results(self) -> Result<T, Vec<FlatError<L, E>>>;
}

Required Methods§

Source

fn flatten_results(self) -> Result<T, Vec<FlatError<L, E>>>

Implementations on Foreign Types§

Source§

impl<T, L, E> FlattenResultErrors<T, L, E> for Result<T, ErrorTree<L, E>>
where L: Clone,

Implementors§