Struct elrond_wasm::api::uncallable::BigUintUncallable[][src]

pub struct BigUintUncallable;

Trait Implementations

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

type Output = BigUintUncallable

The resulting type after applying the + operator.

fn add(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the + operation. Read more

impl Add<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the + operator.

fn add(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the + operation. Read more

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

fn add_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the += operation. Read more

impl AddAssign<BigUintUncallable> for BigUintUncallable[src]

fn add_assign(&mut self, _other: Self)[src]

Performs the += operation. Read more

impl BigUintApi for BigUintUncallable[src]

fn byte_length(&self) -> i32[src]

fn copy_to_slice_big_endian(&self, _slice: &mut [u8]) -> i32[src]

fn copy_to_array_big_endian_pad_right(&self, _target: &mut [u8; 32])[src]

fn to_bytes_be(&self) -> Vec<u8>[src]

fn to_bytes_be_pad_right(&self, _nr_bytes: usize) -> Option<Vec<u8>>[src]

fn from_bytes_be(_bytes: &[u8]) -> Self[src]

fn zero() -> Self[src]

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

type Output = BigUintUncallable

The resulting type after applying the & operator.

fn bitand(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the & operation. Read more

impl BitAnd<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the & operator.

fn bitand(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the & operation. Read more

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

fn bitand_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the &= operation. Read more

impl BitAndAssign<BigUintUncallable> for BigUintUncallable[src]

fn bitand_assign(&mut self, _other: Self)[src]

Performs the &= operation. Read more

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

type Output = BigUintUncallable

The resulting type after applying the | operator.

fn bitor(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the | operation. Read more

impl BitOr<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the | operator.

fn bitor(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the | operation. Read more

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

fn bitor_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the |= operation. Read more

impl BitOrAssign<BigUintUncallable> for BigUintUncallable[src]

fn bitor_assign(&mut self, _other: Self)[src]

Performs the |= operation. Read more

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

type Output = BigUintUncallable

The resulting type after applying the ^ operator.

fn bitxor(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the ^ operation. Read more

impl BitXor<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the ^ operator.

fn bitxor(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the ^ operation. Read more

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

fn bitxor_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the ^= operation. Read more

impl BitXorAssign<BigUintUncallable> for BigUintUncallable[src]

fn bitxor_assign(&mut self, _other: Self)[src]

Performs the ^= operation. Read more

impl Clone for BigUintUncallable[src]

fn clone(&self) -> Self[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for BigUintUncallable[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for BigUintUncallable[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

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

type Output = BigUintUncallable

The resulting type after applying the / operator.

fn div(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the / operation. Read more

impl Div<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the / operator.

fn div(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the / operation. Read more

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

fn div_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the /= operation. Read more

impl DivAssign<BigUintUncallable> for BigUintUncallable[src]

fn div_assign(&mut self, _other: Self)[src]

Performs the /= operation. Read more

impl From<BigUintUncallable> for BigIntUncallable[src]

fn from(_item: BigUintUncallable) -> Self[src]

Performs the conversion.

impl From<u32> for BigUintUncallable[src]

fn from(_item: u32) -> Self[src]

Performs the conversion.

impl From<u64> for BigUintUncallable[src]

fn from(_item: u64) -> Self[src]

Performs the conversion.

impl From<usize> for BigUintUncallable[src]

fn from(_item: usize) -> Self[src]

Performs the conversion.

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

type Output = BigUintUncallable

The resulting type after applying the * operator.

fn mul(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the * operation. Read more

impl Mul<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the * operator.

fn mul(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the * operation. Read more

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

fn mul_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the *= operation. Read more

impl MulAssign<BigUintUncallable> for BigUintUncallable[src]

fn mul_assign(&mut self, _other: Self)[src]

Performs the *= operation. Read more

impl NestedDecode for BigUintUncallable[src]

const TYPE_INFO: TypeInfo[src]

fn dep_decode<I: NestedDecodeInput>(_input: &mut I) -> Result<Self, DecodeError>[src]

Attempt to deserialise the value from input, using the format of an object nested inside another structure. In case of success returns the deserialized value and the number of bytes consumed during the operation. Read more

fn dep_decode_or_exit<I: NestedDecodeInput, ExitCtx: Clone>(
    _input: &mut I,
    _c: ExitCtx,
    _exit: fn(_: ExitCtx, _: DecodeError) -> !
) -> Self
[src]

Version of top_decode that exits quickly in case of error. Its purpose is to create smaller implementations in cases where the application is supposed to exit directly on decode error. Read more

impl NestedEncode for BigUintUncallable[src]

const TYPE_INFO: TypeInfo[src]

fn dep_encode<O: NestedEncodeOutput>(
    &self,
    _dest: &mut O
) -> Result<(), EncodeError>
[src]

NestedEncode to output, using the format of an object nested inside another structure. Does not provide compact version. Read more

fn dep_encode_or_exit<O: NestedEncodeOutput, ExitCtx: Clone>(
    &self,
    _dest: &mut O,
    _c: ExitCtx,
    _exit: fn(_: ExitCtx, _: EncodeError) -> !
)
[src]

Version of top_decode that exits quickly in case of error. Its purpose is to create smaller implementations in cases where the application is supposed to exit directly on decode error. Read more

impl Ord for BigUintUncallable[src]

fn cmp(&self, _other: &Self) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<BigUintUncallable> for BigUintUncallable[src]

fn eq(&self, _other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<u64> for BigUintUncallable[src]

fn eq(&self, _other: &u64) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialOrd<BigUintUncallable> for BigUintUncallable[src]

fn partial_cmp(&self, _other: &Self) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialOrd<u64> for BigUintUncallable[src]

fn partial_cmp(&self, _other: &u64) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

type Output = BigUintUncallable

The resulting type after applying the % operator.

fn rem(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the % operation. Read more

impl Rem<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the % operator.

fn rem(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the % operation. Read more

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

fn rem_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the %= operation. Read more

impl RemAssign<BigUintUncallable> for BigUintUncallable[src]

fn rem_assign(&mut self, _other: Self)[src]

Performs the %= operation. Read more

impl Shl<usize> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the << operator.

fn shl(self, _rhs: usize) -> BigUintUncallable[src]

Performs the << operation. Read more

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

type Output = BigUintUncallable

The resulting type after applying the << operator.

fn shl(self, _rhs: usize) -> BigUintUncallable[src]

Performs the << operation. Read more

impl ShlAssign<usize> for BigUintUncallable[src]

fn shl_assign(&mut self, _rhs: usize)[src]

Performs the <<= operation. Read more

impl Shr<usize> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the >> operator.

fn shr(self, _rhs: usize) -> BigUintUncallable[src]

Performs the >> operation. Read more

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

type Output = BigUintUncallable

The resulting type after applying the >> operator.

fn shr(self, _rhs: usize) -> BigUintUncallable[src]

Performs the >> operation. Read more

impl ShrAssign<usize> for BigUintUncallable[src]

fn shr_assign(&mut self, _rhs: usize)[src]

Performs the >>= operation. Read more

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

type Output = BigUintUncallable

The resulting type after applying the - operator.

fn sub(self, _other: &BigUintUncallable) -> BigUintUncallable[src]

Performs the - operation. Read more

impl Sub<BigUintUncallable> for BigUintUncallable[src]

type Output = BigUintUncallable

The resulting type after applying the - operator.

fn sub(self, _other: BigUintUncallable) -> BigUintUncallable[src]

Performs the - operation. Read more

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

fn sub_assign(&mut self, _other: &BigUintUncallable)[src]

Performs the -= operation. Read more

impl SubAssign<BigUintUncallable> for BigUintUncallable[src]

fn sub_assign(&mut self, _other: Self)[src]

Performs the -= operation. Read more

impl TopDecode for BigUintUncallable[src]

const TYPE_INFO: TypeInfo[src]

fn top_decode<I: TopDecodeInput>(_input: I) -> Result<Self, DecodeError>[src]

Attempt to deserialize the value from input.

fn top_decode_or_exit<I: TopDecodeInput, ExitCtx: Clone>(
    _input: I,
    _: ExitCtx,
    _: fn(_: ExitCtx, _: DecodeError) -> !
) -> Self
[src]

Version of top_decode that exits quickly in case of error. Its purpose is to create smaller implementations in cases where the application is supposed to exit directly on decode error. Read more

impl TopEncode for BigUintUncallable[src]

const TYPE_INFO: TypeInfo[src]

fn top_encode<O: TopEncodeOutput>(&self, _output: O) -> Result<(), EncodeError>[src]

Attempt to serialize the value to ouput.

fn top_encode_or_exit<O: TopEncodeOutput, ExitCtx: Clone>(
    &self,
    _output: O,
    _c: ExitCtx,
    _exit: fn(_: ExitCtx, _: EncodeError) -> !
)
[src]

Version of top_decode that exits quickly in case of error. Its purpose is to create smaller bytecode implementations in cases where the application is supposed to exit directly on decode error. Read more

impl TypeAbi for BigUintUncallable[src]

fn type_name() -> String[src]

fn provide_type_descriptions<TDC: TypeDescriptionContainer>(
    accumulator: &mut TDC
)
[src]

A type can provide more than its own description. For instance, a struct can also provide the descriptions of the type of its fields. TypeAbi doesn’t care for the exact accumulator type, which is abstracted by the TypeDescriptionContainer trait. Read more

impl Eq for BigUintUncallable[src]

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> ContractCallArg for T where
    T: TopEncode
[src]

pub fn push_async_arg(&Self, &mut ArgBuffer) -> Result<(), SCError>[src]

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

pub fn dyn_load<I, D>(&mut D, ArgId) -> T where
    I: TopDecodeInput,
    D: DynArgInput<I>, 
[src]

impl<T> EndpointResult for T where
    T: TopEncode
[src]

type DecodeAs = T

Indicates how the result of the endpoint can be interpreted when called via proxy. Self for most types. Read more

pub fn finish<FA>(&Self, FA) where
    FA: EndpointFinishApi + Clone + 'static, 
[src]

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.