pub enum Tuple4Error<T0: Parse, T1: Parse, T2: Parse, T3: Parse> {
T0(ParserError<T0>),
T1(ParserError<T1>),
T2(ParserError<T2>),
T3(ParserError<T3>),
}Variants§
Trait Implementations§
Source§impl<T0: Parse, T1: Parse, T2: Parse, T3: Parse> Debug for Tuple4Error<T0, T1, T2, T3>where
ParserError<T0>: Debug,
ParserError<T1>: Debug,
ParserError<T2>: Debug,
ParserError<T3>: Debug,
impl<T0: Parse, T1: Parse, T2: Parse, T3: Parse> Debug for Tuple4Error<T0, T1, T2, T3>where
ParserError<T0>: Debug,
ParserError<T1>: Debug,
ParserError<T2>: Debug,
ParserError<T3>: Debug,
Source§impl<T0: Parse, T1: Parse, T2: Parse, T3: Parse> ParseError for Tuple4Error<T0, T1, T2, T3>
impl<T0: Parse, T1: Parse, T2: Parse, T3: Parse> ParseError for Tuple4Error<T0, T1, T2, T3>
Auto Trait Implementations§
impl<T0, T1, T2, T3> Freeze for Tuple4Error<T0, T1, T2, T3>
impl<T0, T1, T2, T3> RefUnwindSafe for Tuple4Error<T0, T1, T2, T3>where
<T0 as Parse>::Error: RefUnwindSafe,
<T1 as Parse>::Error: RefUnwindSafe,
<T2 as Parse>::Error: RefUnwindSafe,
<T3 as Parse>::Error: RefUnwindSafe,
impl<T0, T1, T2, T3> Send for Tuple4Error<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Sync for Tuple4Error<T0, T1, T2, T3>
impl<T0, T1, T2, T3> Unpin for Tuple4Error<T0, T1, T2, T3>
impl<T0, T1, T2, T3> UnsafeUnpin for Tuple4Error<T0, T1, T2, T3>
impl<T0, T1, T2, T3> UnwindSafe for Tuple4Error<T0, T1, T2, T3>where
<T0 as Parse>::Error: UnwindSafe,
<T1 as Parse>::Error: UnwindSafe,
<T2 as Parse>::Error: UnwindSafe,
<T3 as Parse>::Error: 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<R, T> FromRecursiveRoot<R> for Twhere
T: From<R>,
impl<R, T> FromRecursiveRoot<R> for Twhere
T: From<R>,
fn from_recursive_root(root: R, _parser: &mut Parser) -> T
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