pub enum Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0> {
    T10(T10),
    T9(T9),
    T8(T8),
    T7(T7),
    T6(T6),
    T5(T5),
    T4(T4),
    T3(T3),
    T2(T2),
    T1(T1),
    T0(T0),
}
Expand description

An error resulting from an invalid tuple.

Variants§

§

T10(T10)

The given tuple member was invalid.

§

T9(T9)

The given tuple member was invalid.

§

T8(T8)

The given tuple member was invalid.

§

T7(T7)

The given tuple member was invalid.

§

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<T10: Debug, T9: Debug, T8: Debug, T7: Debug, T6: Debug, T5: Debug, T4: Debug, T3: Debug, T2: Debug, T1: Debug, T0: Debug> Debug for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T10: Display, T9: Display, T8: Display, T7: Display, T6: Display, T5: Display, T4: Display, T3: Display, T2: Display, T1: Display, T0: Display> Display for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T10: Display + Debug, T9: Display + Debug, T8: Display + Debug, T7: Display + Debug, T6: Display + Debug, T5: Display + Debug, T4: Display + Debug, T3: Display + Debug, T2: Display + Debug, T1: Display + Debug, T0: Display + Debug> Error for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>

1.30.0 · source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0> RefUnwindSafe for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>where T0: RefUnwindSafe, T1: RefUnwindSafe, T10: RefUnwindSafe, T2: RefUnwindSafe, T3: RefUnwindSafe, T4: RefUnwindSafe, T5: RefUnwindSafe, T6: RefUnwindSafe, T7: RefUnwindSafe, T8: RefUnwindSafe, T9: RefUnwindSafe,

§

impl<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0> Send for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>where T0: Send, T1: Send, T10: Send, T2: Send, T3: Send, T4: Send, T5: Send, T6: Send, T7: Send, T8: Send, T9: Send,

§

impl<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0> Sync for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>where T0: Sync, T1: Sync, T10: Sync, T2: Sync, T3: Sync, T4: Sync, T5: Sync, T6: Sync, T7: Sync, T8: Sync, T9: Sync,

§

impl<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0> Unpin for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>where T0: Unpin, T1: Unpin, T10: Unpin, T2: Unpin, T3: Unpin, T4: Unpin, T5: Unpin, T6: Unpin, T7: Unpin, T8: Unpin, T9: Unpin,

§

impl<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0> UnwindSafe for Tuple11CheckError<T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0>where T0: UnwindSafe, T1: UnwindSafe, T10: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe, T4: UnwindSafe, T5: UnwindSafe, T6: UnwindSafe, T7: UnwindSafe, T8: UnwindSafe, T9: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Error for Twhere T: Error + 'static,

source§

fn as_error(&self) -> &(dyn Error + 'static)

Gets this error as an std::error::Error.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<E> Provider for Ewhere E: Error + ?Sized,

source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.