[][src]Struct elrond_wasm_node::ArwenBigInt

pub struct ArwenBigInt {
    pub handle: i32,
}

Fields

handle: i32

Implementations

impl ArwenBigInt[src]

pub fn from_i64(value: i64) -> ArwenBigInt[src]

Trait Implementations

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

type Output = ArwenBigInt

The resulting type after applying the + operator.

impl Add<ArwenBigInt> for ArwenBigInt[src]

type Output = ArwenBigInt

The resulting type after applying the + operator.

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

impl AddAssign<ArwenBigInt> for ArwenBigInt[src]

impl BigIntApi<ArwenBigUint> for ArwenBigInt[src]

impl Clone for ArwenBigInt[src]

impl ContractHookApi<ArwenBigInt, ArwenBigUint> for ArwenApiImpl[src]

impl ContractIOApi<ArwenBigInt, ArwenBigUint> for ArwenApiImpl[src]

impl Decode for ArwenBigInt[src]

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

type Output = ArwenBigInt

The resulting type after applying the / operator.

impl Div<ArwenBigInt> for ArwenBigInt[src]

type Output = ArwenBigInt

The resulting type after applying the / operator.

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

impl DivAssign<ArwenBigInt> for ArwenBigInt[src]

impl Encode for ArwenBigInt[src]

impl Eq for ArwenBigInt[src]

impl From<ArwenBigUint> for ArwenBigInt[src]

impl From<i32> for ArwenBigInt[src]

impl From<i64> for ArwenBigInt[src]

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

type Output = ArwenBigInt

The resulting type after applying the * operator.

impl Mul<ArwenBigInt> for ArwenBigInt[src]

type Output = ArwenBigInt

The resulting type after applying the * operator.

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

impl MulAssign<ArwenBigInt> for ArwenBigInt[src]

impl Neg for ArwenBigInt[src]

type Output = ArwenBigInt

The resulting type after applying the - operator.

impl Ord for ArwenBigInt[src]

impl PartialEq<ArwenBigInt> for ArwenBigInt[src]

impl PartialEq<i64> for ArwenBigInt[src]

impl PartialOrd<ArwenBigInt> for ArwenBigInt[src]

impl PartialOrd<i64> for ArwenBigInt[src]

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

type Output = ArwenBigInt

The resulting type after applying the % operator.

impl Rem<ArwenBigInt> for ArwenBigInt[src]

type Output = ArwenBigInt

The resulting type after applying the % operator.

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

impl RemAssign<ArwenBigInt> for ArwenBigInt[src]

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

type Output = ArwenBigInt

The resulting type after applying the - operator.

impl Sub<ArwenBigInt> for ArwenBigInt[src]

type Output = ArwenBigInt

The resulting type after applying the - operator.

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

impl SubAssign<ArwenBigInt> for ArwenBigInt[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> 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.