pub enum ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> {
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,
},
}
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
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> Debug for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0: Debug, E1: Debug, E2: Debug, E3: Debug, E4: Debug, E5: Debug, E6: Debug, E7: Debug, E8: Debug, E9: Debug, E10: Debug> Debug for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
Source§impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Display for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Display for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
Source§impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Error for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Error for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
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> Freeze for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> RefUnwindSafe for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>where
E0: RefUnwindSafe,
E1: RefUnwindSafe,
E2: RefUnwindSafe,
E3: RefUnwindSafe,
E4: RefUnwindSafe,
E5: RefUnwindSafe,
E6: RefUnwindSafe,
E7: RefUnwindSafe,
E8: RefUnwindSafe,
E9: RefUnwindSafe,
E10: RefUnwindSafe,
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Send for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Sync for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> Unpin for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>
impl<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10> UnwindSafe for ParseTuple11Error<E0, E1, E2, E3, E4, E5, E6, E7, E8, E9, E10>where
E0: UnwindSafe,
E1: UnwindSafe,
E2: UnwindSafe,
E3: UnwindSafe,
E4: UnwindSafe,
E5: UnwindSafe,
E6: UnwindSafe,
E7: UnwindSafe,
E8: UnwindSafe,
E9: UnwindSafe,
E10: 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