[][src]Struct elrond_wasm_debug::RustBigInt

pub struct RustBigInt(pub BigInt);

Implementations

impl RustBigInt[src]

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

impl RustBigInt[src]

pub fn to_signed_bytes_be(&self) -> Vec<u8>

Notable traits for Vec<u8>

impl Write for Vec<u8>
[src]

Trait Implementations

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

type Output = RustBigInt

The resulting type after applying the + operator.

impl Add<RustBigInt> for RustBigInt[src]

type Output = RustBigInt

The resulting type after applying the + operator.

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

impl AddAssign<RustBigInt> for RustBigInt[src]

impl BigIntApi<RustBigUint> for RustBigInt[src]

impl Clone for RustBigInt[src]

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

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

impl Debug for RustBigInt[src]

impl Decode for RustBigInt[src]

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

type Output = RustBigInt

The resulting type after applying the / operator.

impl Div<RustBigInt> for RustBigInt[src]

type Output = RustBigInt

The resulting type after applying the / operator.

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

impl DivAssign<RustBigInt> for RustBigInt[src]

impl Encode for RustBigInt[src]

impl Eq for RustBigInt[src]

impl From<BigInt> for RustBigInt[src]

impl From<RustBigUint> for RustBigInt[src]

impl From<i32> for RustBigInt[src]

impl From<i64> for RustBigInt[src]

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

type Output = RustBigInt

The resulting type after applying the * operator.

impl Mul<RustBigInt> for RustBigInt[src]

type Output = RustBigInt

The resulting type after applying the * operator.

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

impl MulAssign<RustBigInt> for RustBigInt[src]

impl Neg for RustBigInt[src]

type Output = RustBigInt

The resulting type after applying the - operator.

impl Ord for RustBigInt[src]

impl PartialEq<RustBigInt> for RustBigInt[src]

impl PartialEq<i64> for RustBigInt[src]

impl PartialOrd<RustBigInt> for RustBigInt[src]

impl PartialOrd<i64> for RustBigInt[src]

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

type Output = RustBigInt

The resulting type after applying the % operator.

impl Rem<RustBigInt> for RustBigInt[src]

type Output = RustBigInt

The resulting type after applying the % operator.

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

impl RemAssign<RustBigInt> for RustBigInt[src]

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

type Output = RustBigInt

The resulting type after applying the - operator.

impl Sub<RustBigInt> for RustBigInt[src]

type Output = RustBigInt

The resulting type after applying the - operator.

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

impl SubAssign<RustBigInt> for RustBigInt[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T, D> ArgType<D> for T where
    D: DynArgLoader<T>,
    T: Decode, 
[src]

impl<T> AsyncCallArg for T where
    T: Encode, 
[src]

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

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

impl<'a, A, BigInt, BigUint, T> EndpointResult<'a, A, BigInt, BigUint> for T where
    A: ContractHookApi<BigInt, BigUint> + ContractIOApi<BigInt, BigUint> + 'a,
    BigInt: BigIntApi<BigUint> + 'static,
    BigUint: BigUintApi + 'static,
    T: Encode, 
[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.