Struct elrond_wasm_node::api::ArwenBigInt[][src]

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]

type Storage = Self

Abstracts the lower-level storage functionality.

type CallValue = Self

Abstracts the call value handling at the beginning of a function call.

type SendApi = Self

Abstracts the sending of EGLD & ESDT transactions, as well as async calls.

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 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 NestedDecode for ArwenBigInt[src]

impl NestedEncode for ArwenBigInt[src]

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]

impl TopDecode for ArwenBigInt[src]

impl TopEncode for ArwenBigInt[src]

impl TypeAbi for ArwenBigInt[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> ContractCallArg for T where
    T: TopEncode, 
[src]

impl<T> DynArg for T where
    T: TopDecode, 
[src]

impl<FA, T> EndpointResult<FA> for T where
    T: TopEncode,
    FA: EndpointFinishApi + ErrorApi + Clone + 'static, 
[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.