Struct TryFromBigIntError
struct TryFromBigIntError<T> { ... }
The error type returned when a checked conversion regarding big integer fails.
Implementations
impl<T> TryFromBigIntError<T>
impl<T> Any for TryFromBigIntError<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for TryFromBigIntError<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for TryFromBigIntError<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for TryFromBigIntError<T>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> Display for TryFromBigIntError<T>
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl<T> Error for TryFromBigIntError<T>
fn description(self: &Self) -> &str
impl<T> Freeze for TryFromBigIntError<T>
impl<T> From for TryFromBigIntError<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> RefUnwindSafe for TryFromBigIntError<T>
impl<T> Send for TryFromBigIntError<T>
impl<T> StructuralPartialEq for TryFromBigIntError<T>
impl<T> Sync for TryFromBigIntError<T>
impl<T> ToOwned for TryFromBigIntError<T>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T> ToString for TryFromBigIntError<T>
fn to_string(self: &Self) -> String
impl<T> Unpin for TryFromBigIntError<T>
impl<T> UnwindSafe for TryFromBigIntError<T>
impl<T, U> Into for TryFromBigIntError<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for TryFromBigIntError<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for TryFromBigIntError<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T: $crate::clone::Clone> Clone for TryFromBigIntError<T>
fn clone(self: &Self) -> TryFromBigIntError<T>
impl<T: $crate::cmp::Eq> Eq for TryFromBigIntError<T>
impl<T: $crate::cmp::PartialEq> PartialEq for TryFromBigIntError<T>
fn eq(self: &Self, other: &TryFromBigIntError<T>) -> bool
impl<T: $crate::fmt::Debug> Debug for TryFromBigIntError<T>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result