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>
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§impl<E0, E1, E2, E3, E4, E5, E6> Display for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
impl<E0, E1, E2, E3, E4, E5, E6> Display for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
Source§impl<E0, E1, E2, E3, E4, E5, E6> Error for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
impl<E0, E1, E2, E3, E4, E5, E6> Error for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<E0, E1, E2, E3, E4, E5, E6> Freeze for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
impl<E0, E1, E2, E3, E4, E5, E6> RefUnwindSafe for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>where
E0: RefUnwindSafe,
E1: RefUnwindSafe,
E2: RefUnwindSafe,
E3: RefUnwindSafe,
E4: RefUnwindSafe,
E5: RefUnwindSafe,
E6: RefUnwindSafe,
impl<E0, E1, E2, E3, E4, E5, E6> Send for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
impl<E0, E1, E2, E3, E4, E5, E6> Sync for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
impl<E0, E1, E2, E3, E4, E5, E6> Unpin for ParseTuple7Error<E0, E1, E2, E3, E4, E5, E6>
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> 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