pub struct TryFromIntError(/* private fields */);
Expand description
The error type returned when a checked integral type conversion fails.
Trait Implementationsยง
1.34.0 ยท Sourceยงimpl Clone for TryFromIntError
impl Clone for TryFromIntError
Sourceยงfn clone(&self) -> TryFromIntError
fn clone(&self) -> TryFromIntError
Returns a duplicate 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 more1.34.0 ยท Sourceยงimpl Debug for TryFromIntError
impl Debug for TryFromIntError
1.34.0 ยท Sourceยงimpl Display for TryFromIntError
impl Display for TryFromIntError
1.34.0 ยท Sourceยงimpl Error for TryFromIntError
impl Error for TryFromIntError
Sourceยงfn description(&self) -> &str
fn description(&self) -> &str
๐Deprecated since 1.42.0: use the Display impl or to_string()
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
Sourceยงimpl From<!> for TryFromIntError
impl From<!> for TryFromIntError
Sourceยงfn from(never: !) -> TryFromIntError
fn from(never: !) -> TryFromIntError
Converts to this type from the input type.
1.34.0 ยท Sourceยงimpl From<Infallible> for TryFromIntError
impl From<Infallible> for TryFromIntError
Sourceยงfn from(x: Infallible) -> TryFromIntError
fn from(x: Infallible) -> TryFromIntError
Converts to this type from the input type.
1.34.0 ยท Sourceยงimpl PartialEq for TryFromIntError
impl PartialEq for TryFromIntError
impl Copy for TryFromIntError
impl Eq for TryFromIntError
impl StructuralPartialEq for TryFromIntError
Auto Trait Implementationsยง
impl Freeze for TryFromIntError
impl RefUnwindSafe for TryFromIntError
impl Send for TryFromIntError
impl Sync for TryFromIntError
impl Unpin for TryFromIntError
impl UnwindSafe for TryFromIntError
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