[][src]Struct elrond_wasm_debug::RustBigUint

pub struct RustBigUint(pub BigInt);

Methods

impl RustBigUint[src]

pub fn value(&self) -> &BigInt[src]

Trait Implementations

impl<'a, 'b> Add<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the + operator.

impl Add<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the + operator.

impl<'_> AddAssign<&'_ RustBigUint> for RustBigUint[src]

impl AddAssign<RustBigUint> for RustBigUint[src]

impl BigIntApi<RustBigUint> for RustBigInt[src]

impl BigUintApi for RustBigUint[src]

impl<'a, 'b> BitAnd<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the & operator.

impl BitAnd<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the & operator.

impl<'_> BitAndAssign<&'_ RustBigUint> for RustBigUint[src]

impl BitAndAssign<RustBigUint> for RustBigUint[src]

impl<'a, 'b> BitOr<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the | operator.

impl BitOr<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the | operator.

impl<'_> BitOrAssign<&'_ RustBigUint> for RustBigUint[src]

impl BitOrAssign<RustBigUint> for RustBigUint[src]

impl<'a, 'b> BitXor<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the ^ operator.

impl BitXor<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the ^ operator.

impl<'_> BitXorAssign<&'_ RustBigUint> for RustBigUint[src]

impl BitXorAssign<RustBigUint> for RustBigUint[src]

impl Clone for RustBigUint[src]

impl ContractHookApi<RustBigInt, RustBigUint> for ArwenMockRef[src]

impl ContractIOApi<RustBigInt, RustBigUint> for ArwenMockRef[src]

impl<'a, 'b> Div<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the / operator.

impl Div<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the / operator.

impl<'_> DivAssign<&'_ RustBigUint> for RustBigUint[src]

impl DivAssign<RustBigUint> for RustBigUint[src]

impl Eq for RustBigUint[src]

impl From<BigInt> for RustBigUint[src]

impl From<RustBigUint> for RustBigInt[src]

impl From<i32> for RustBigUint[src]

impl From<i64> for RustBigUint[src]

impl<'a, 'b> Mul<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the * operator.

impl Mul<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the * operator.

impl<'_> MulAssign<&'_ RustBigUint> for RustBigUint[src]

impl MulAssign<RustBigUint> for RustBigUint[src]

impl Ord for RustBigUint[src]

impl PartialEq<RustBigUint> for RustBigUint[src]

impl PartialEq<i64> for RustBigUint[src]

impl PartialOrd<RustBigUint> for RustBigUint[src]

impl PartialOrd<i64> for RustBigUint[src]

impl<'a, 'b> Rem<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the % operator.

impl Rem<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the % operator.

impl<'_> RemAssign<&'_ RustBigUint> for RustBigUint[src]

impl RemAssign<RustBigUint> for RustBigUint[src]

impl Shl<i32> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the << operator.

impl<'a> Shl<i32> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the << operator.

impl ShlAssign<i32> for RustBigUint[src]

impl Shr<i32> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the >> operator.

impl<'a> Shr<i32> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the >> operator.

impl ShrAssign<i32> for RustBigUint[src]

impl<'a, 'b> Sub<&'b RustBigUint> for &'a RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the - operator.

impl Sub<RustBigUint> for RustBigUint[src]

type Output = RustBigUint

The resulting type after applying the - operator.

impl<'_> SubAssign<&'_ RustBigUint> for RustBigUint[src]

impl SubAssign<RustBigUint> for RustBigUint[src]

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, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.