Enum ParseTuple7Error

Source
pub enum ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6> {
    Field0 {
        source: E0,
    },
    Field1 {
        source: E1,
    },
    Field2 {
        source: E2,
    },
    Field3 {
        source: E3,
    },
    Field4 {
        source: E4,
    },
    Field5 {
        source: E5,
    },
    Field6 {
        source: E6,
    },
}
Expand description

This enum combines all errors that can occur when parsing an tuple.

Variants§

§

Field0

Fields

§source: E0
§

Field1

Fields

§source: E1
§

Field2

Fields

§source: E2
§

Field3

Fields

§source: E3
§

Field4

Fields

§source: E4
§

Field5

Fields

§source: E5
§

Field6

Fields

§source: E6

Trait Implementations§

Source§

impl<E0: Debug, E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug, E6: Debug> Debug for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>

Source§

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

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

impl<E0, E1, E2, E3, E4, E5, E6> Display for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: Display, E1: Display, E2: Display, E3: Display, E4: Display, E5: Display, E6: Display,

Source§

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

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

impl<E0, E1, E2, E3, E4, E5, E6> Error for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: Error, E1: Error, E2: Error, E3: Error, E4: Error, E5: Error, E6: Error, Self: Debug + Display,

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns 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, request: &mut Request<'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<E0, E1, E2, E3, E4, E5, E6> Freeze for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: Freeze, E1: Freeze, E2: Freeze, E3: Freeze, E4: Freeze, E5: Freeze, E6: Freeze,

§

impl<E0, E1, E2, E3, E4, E5, E6> RefUnwindSafe for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>

§

impl<E0, E1, E2, E3, E4, E5, E6> Send for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: Send, E1: Send, E2: Send, E3: Send, E4: Send, E5: Send, E6: Send,

§

impl<E0, E1, E2, E3, E4, E5, E6> Sync for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: Sync, E1: Sync, E2: Sync, E3: Sync, E4: Sync, E5: Sync, E6: Sync,

§

impl<E0, E1, E2, E3, E4, E5, E6> Unpin for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: Unpin, E1: Unpin, E2: Unpin, E3: Unpin, E4: Unpin, E5: Unpin, E6: Unpin,

§

impl<E0, E1, E2, E3, E4, E5, E6> UnwindSafe for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
where E0: UnwindSafe, E1: UnwindSafe, E2: UnwindSafe, E3: UnwindSafe, E4: UnwindSafe, E5: UnwindSafe, E6: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

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

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.