pub enum OutputError<'e, 's, 'v> {
Leaf(&'e ErrorKind<'s, 'v>),
Branch(Vec<OutputUnit<'e, 's, 'v>>),
}
Expand description
Error of OutputUnit
.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'e, 's, 'v> Freeze for OutputError<'e, 's, 'v>
impl<'e, 's, 'v> !RefUnwindSafe for OutputError<'e, 's, 'v>
impl<'e, 's, 'v> !Send for OutputError<'e, 's, 'v>
impl<'e, 's, 'v> !Sync for OutputError<'e, 's, 'v>
impl<'e, 's, 'v> Unpin for OutputError<'e, 's, 'v>
impl<'e, 's, 'v> !UnwindSafe for OutputError<'e, 's, 'v>
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