pub struct TryFromReprError<T> {
pub input: T,
}
Expand description
Error returned by the derived TryFrom
implementation on enums to
convert from their repr.
Fields§
§input: T
Original input value which failed to convert via the derived
TryFrom
implementation.
Trait Implementations§
Source§impl<T: Clone> Clone for TryFromReprError<T>
impl<T: Clone> Clone for TryFromReprError<T>
Source§fn clone(&self) -> TryFromReprError<T>
fn clone(&self) -> TryFromReprError<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for TryFromReprError<T>
impl<T: Debug> Debug for TryFromReprError<T>
Source§impl<T: Debug> Display for TryFromReprError<T>
impl<T: Debug> Display for TryFromReprError<T>
Source§impl<T: Debug> Error for TryFromReprError<T>
impl<T: Debug> Error for TryFromReprError<T>
1.30.0 · 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()
impl<T: Copy> Copy for TryFromReprError<T>
Auto Trait Implementations§
impl<T> Freeze for TryFromReprError<T>where
T: Freeze,
impl<T> RefUnwindSafe for TryFromReprError<T>where
T: RefUnwindSafe,
impl<T> Send for TryFromReprError<T>where
T: Send,
impl<T> Sync for TryFromReprError<T>where
T: Sync,
impl<T> Unpin for TryFromReprError<T>where
T: Unpin,
impl<T> UnwindSafe for TryFromReprError<T>where
T: 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