pub enum ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> {
Show 13 variants
Field0 {
source: E0,
},
Field1 {
source: E1,
},
Field2 {
source: E2,
},
Field3 {
source: E3,
},
Field4 {
source: E4,
},
Field5 {
source: E5,
},
Field6 {
source: E6,
},
Field7 {
source: E7,
},
Field8 {
source: E8,
},
Field9 {
source: E9,
},
Field10 {
source: E10,
},
Field11 {
source: E11,
},
Field12 {
source: E12,
},
}
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
Field7
Fields
§
source: E7
Field8
Fields
§
source: E8
Field9
Fields
§
source: E9
Field10
Fields
§
source: E10
Field11
Fields
§
source: E11
Field12
Fields
§
source: E12
Trait Implementations§
Source§impl<E0: Debug, E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug, E6: Debug, E7: Debug, E8: Debug, E9: Debug, E10: Debug, E11: Debug, E12: Debug> Debug for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0: Debug, E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug, E6: Debug, E7: Debug, E8: Debug, E9: Debug, E10: Debug, E11: Debug, E12: Debug> Debug for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
Source§impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Display for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Display for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
Source§impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Error for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Error for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
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, E7, E8, E9, E10, E11, E12> Freeze for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> RefUnwindSafe for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>where
E0: RefUnwindSafe,
E1: RefUnwindSafe,
E2: RefUnwindSafe,
E3: RefUnwindSafe,
E4: RefUnwindSafe,
E5: RefUnwindSafe,
E6: RefUnwindSafe,
E7: RefUnwindSafe,
E8: RefUnwindSafe,
E9: RefUnwindSafe,
E10: RefUnwindSafe,
E11: RefUnwindSafe,
E12: RefUnwindSafe,
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Send for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Sync for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> Unpin for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12> UnwindSafe for ParseTuple13Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12>where
E0: UnwindSafe,
E1: UnwindSafe,
E2: UnwindSafe,
E3: UnwindSafe,
E4: UnwindSafe,
E5: UnwindSafe,
E6: UnwindSafe,
E7: UnwindSafe,
E8: UnwindSafe,
E9: UnwindSafe,
E10: UnwindSafe,
E11: UnwindSafe,
E12: 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