Struct TryFromBigIntError

pub struct TryFromBigIntError<T> { /* private fields */ }

The error type returned when a checked conversion regarding big integer fails.

Implementations

impl<T> TryFromBigIntError<T>

fn into_original(self) -> T

Extract the original value, if available. The value will be available if the type before conversion was either BigInt or BigUint.

Trait Implementations

impl<T> Display for TryFromBigIntError<T>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<T> Error for TryFromBigIntError<T> where T: Debug,

fn description(&self) -> &str

impl<T: Clone> Clone for TryFromBigIntError<T>

fn clone(&self) -> TryFromBigIntError<T>

impl<T: Copy> Copy for TryFromBigIntError<T>

impl<T: Debug> Debug for TryFromBigIntError<T>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<T: Eq> Eq for TryFromBigIntError<T>

impl<T: PartialEq> PartialEq for TryFromBigIntError<T>

fn eq(&self, other: &TryFromBigIntError<T>) -> bool

impl<T: PartialEq> StructuralPartialEq for TryFromBigIntError<T>

Auto Trait Implementations

impl<T> Freeze for TryFromBigIntError<T> where T: Freeze,

impl<T> RefUnwindSafe for TryFromBigIntError<T> where T: RefUnwindSafe,

impl<T> Send for TryFromBigIntError<T> where T: Send,

impl<T> Sync for TryFromBigIntError<T> where T: Sync,

impl<T> Unpin for TryFromBigIntError<T> where T: Unpin,

impl<T> UnsafeUnpin for TryFromBigIntError<T> where T: UnsafeUnpin,

impl<T> UnwindSafe for TryFromBigIntError<T> where T: UnwindSafe,

Blanket Implementations

impl<T> Any for TryFromBigIntError<T> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for TryFromBigIntError<T> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for TryFromBigIntError<T> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for TryFromBigIntError<T> where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for TryFromBigIntError<T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for TryFromBigIntError<T> where T: Clone,

type Owned = T;
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)

impl<T> ToString for TryFromBigIntError<T> where T: Display + ?Sized,

fn to_string(&self) -> String

impl<T, U> Into<U> for TryFromBigIntError<T> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for TryFromBigIntError<T> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for TryFromBigIntError<T> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>