[][src]Struct elrond_wasm_node::ArwenBigUint

pub struct ArwenBigUint {
    pub handle: i32,
}

Fields

handle: i32

Implementations

impl ArwenBigUint[src]

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

Trait Implementations

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

type Output = ArwenBigUint

The resulting type after applying the + operator.

impl Add<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the + operator.

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

impl AddAssign<ArwenBigUint> for ArwenBigUint[src]

impl BigIntApi<ArwenBigUint> for ArwenBigInt[src]

impl BigUintApi for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the & operator.

impl BitAnd<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the & operator.

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

impl BitAndAssign<ArwenBigUint> for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the | operator.

impl BitOr<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the | operator.

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

impl BitOrAssign<ArwenBigUint> for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the ^ operator.

impl BitXor<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the ^ operator.

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

impl BitXorAssign<ArwenBigUint> for ArwenBigUint[src]

impl Clone for ArwenBigUint[src]

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

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

impl Decode for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the / operator.

impl Div<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the / operator.

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

impl DivAssign<ArwenBigUint> for ArwenBigUint[src]

impl Encode for ArwenBigUint[src]

impl Eq for ArwenBigUint[src]

impl From<ArwenBigUint> for ArwenBigInt[src]

impl From<u32> for ArwenBigUint[src]

impl From<u64> for ArwenBigUint[src]

impl From<usize> for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the * operator.

impl Mul<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the * operator.

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

impl MulAssign<ArwenBigUint> for ArwenBigUint[src]

impl Ord for ArwenBigUint[src]

impl PartialEq<ArwenBigUint> for ArwenBigUint[src]

impl PartialEq<u64> for ArwenBigUint[src]

impl PartialOrd<ArwenBigUint> for ArwenBigUint[src]

impl PartialOrd<u64> for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the % operator.

impl Rem<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the % operator.

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

impl RemAssign<ArwenBigUint> for ArwenBigUint[src]

impl Shl<usize> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the << operator.

impl<'a> Shl<usize> for &'a ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the << operator.

impl ShlAssign<usize> for ArwenBigUint[src]

impl Shr<usize> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the >> operator.

impl<'a> Shr<usize> for &'a ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the >> operator.

impl ShrAssign<usize> for ArwenBigUint[src]

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

type Output = ArwenBigUint

The resulting type after applying the - operator.

impl Sub<ArwenBigUint> for ArwenBigUint[src]

type Output = ArwenBigUint

The resulting type after applying the - operator.

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

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