Enum bytecheck::Tuple7CheckError
source · pub enum Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0> {
T6(T6),
T5(T5),
T4(T4),
T3(T3),
T2(T2),
T1(T1),
T0(T0),
}
Expand description
An error resulting from an invalid tuple.
Variants§
T6(T6)
The given tuple member was invalid.
T5(T5)
The given tuple member was invalid.
T4(T4)
The given tuple member was invalid.
T3(T3)
The given tuple member was invalid.
T2(T2)
The given tuple member was invalid.
T1(T1)
The given tuple member was invalid.
T0(T0)
The given tuple member was invalid.
Trait Implementations§
source§impl<T6: Debug, T5: Debug, T4: Debug, T3: Debug, T2: Debug, T1: Debug, T0: Debug> Debug for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>
impl<T6: Debug, T5: Debug, T4: Debug, T3: Debug, T2: Debug, T1: Debug, T0: Debug> Debug for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>
source§impl<T6: Display, T5: Display, T4: Display, T3: Display, T2: Display, T1: Display, T0: Display> Display for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>
impl<T6: Display, T5: Display, T4: Display, T3: Display, T2: Display, T1: Display, T0: Display> Display for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>
source§impl<T6: Display + Debug, T5: Display + Debug, T4: Display + Debug, T3: Display + Debug, T2: Display + Debug, T1: Display + Debug, T0: Display + Debug> Error for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>
impl<T6: Display + Debug, T5: Display + Debug, T4: Display + Debug, T3: Display + Debug, T2: Display + Debug, T1: Display + Debug, T0: Display + Debug> Error for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<T6, T5, T4, T3, T2, T1, T0> RefUnwindSafe for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>where T0: RefUnwindSafe, T1: RefUnwindSafe, T2: RefUnwindSafe, T3: RefUnwindSafe, T4: RefUnwindSafe, T5: RefUnwindSafe, T6: RefUnwindSafe,
impl<T6, T5, T4, T3, T2, T1, T0> Send for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>where T0: Send, T1: Send, T2: Send, T3: Send, T4: Send, T5: Send, T6: Send,
impl<T6, T5, T4, T3, T2, T1, T0> Sync for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>where T0: Sync, T1: Sync, T2: Sync, T3: Sync, T4: Sync, T5: Sync, T6: Sync,
impl<T6, T5, T4, T3, T2, T1, T0> Unpin for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>where T0: Unpin, T1: Unpin, T2: Unpin, T3: Unpin, T4: Unpin, T5: Unpin, T6: Unpin,
impl<T6, T5, T4, T3, T2, T1, T0> UnwindSafe for Tuple7CheckError<T6, T5, T4, T3, T2, T1, T0>where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe, T4: UnwindSafe, T5: UnwindSafe, T6: 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