pub enum ParseTuple4Error<E0, E1, E2, E3> {
Field0 {
source: E0,
},
Field1 {
source: E1,
},
Field2 {
source: E2,
},
Field3 {
source: E3,
},
}
Expand description
This enum combines all errors that can occur when parsing an tuple.
Variants§
Trait Implementations§
Source§impl<E0, E1, E2, E3> Display for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> Display for ParseTuple4Error<E0, E1, E2, E3>
Source§impl<E0, E1, E2, E3> Error for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> Error for ParseTuple4Error<E0, E1, E2, E3>
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> Freeze for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> RefUnwindSafe for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> Send for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> Sync for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> Unpin for ParseTuple4Error<E0, E1, E2, E3>
impl<E0, E1, E2, E3> UnwindSafe for ParseTuple4Error<E0, E1, E2, E3>
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