[][src]Struct preserves::value::signed_integer::SignedInteger

pub struct SignedInteger(_);

Implementations

impl SignedInteger[src]

pub fn repr(&self) -> &SignedIntegerRepr[src]

pub fn is_i(&self) -> bool[src]

pub fn is_u(&self) -> bool[src]

pub fn is_big(&self) -> bool[src]

Trait Implementations

impl Clone for SignedInteger[src]

impl Debug for SignedInteger[src]

impl Display for SignedInteger[src]

impl Eq for SignedInteger[src]

impl<'a> From<&'a SignedInteger> for Cow<'a, BigInt>[src]

impl<'a> From<&'a SignedInteger> for BigInt[src]

impl<'a> From<Cow<'a, BigInt>> for SignedInteger[src]

impl From<i128> for SignedInteger[src]

impl From<u128> for SignedInteger[src]

impl Hash for SignedInteger[src]

impl Ord for SignedInteger[src]

impl PartialEq<SignedInteger> for SignedInteger[src]

impl PartialOrd<SignedInteger> for SignedInteger[src]

impl StructuralEq for SignedInteger[src]

impl StructuralPartialEq for SignedInteger[src]

impl<'_> TryFrom<&'_ SignedInteger> for i128[src]

type Error = ()

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ SignedInteger> for u128[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.