pub struct FlatError<L, E> {
pub path: Vec<L>,
pub error: E,
}
Expand description
The flattened error type
Fields§
§path: Vec<L>
The path from the leaf to the root of the tree.
error: E
The error
Trait Implementations§
Auto Trait Implementations§
impl<L, E> Freeze for FlatError<L, E>where
E: Freeze,
impl<L, E> RefUnwindSafe for FlatError<L, E>where
E: RefUnwindSafe,
L: RefUnwindSafe,
impl<L, E> Send for FlatError<L, E>
impl<L, E> Sync for FlatError<L, E>
impl<L, E> Unpin for FlatError<L, E>
impl<L, E> UnwindSafe for FlatError<L, E>where
E: UnwindSafe,
L: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more