Enum elrond_wasm_sc_dns::value_state::ValueState[][src]

pub enum ValueState {
    None,
    Pending(Address),
    Committed(Address),
}
Expand description

Copied from elrond-wasm serialization tests.

Variants

None
Pending(Address)
Committed(Address)

Implementations

impl ValueState[src]

pub fn is_available(&self) -> bool[src]

Trait Implementations

impl Debug for ValueState[src]

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

Formats the value using the given formatter. Read more

impl NestedDecode for ValueState[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 ValueState[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 PartialEq<ValueState> for ValueState[src]

fn eq(&self, other: &ValueState) -> bool[src]

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

fn ne(&self, other: &ValueState) -> bool[src]

This method tests for !=.

impl TopDecode for ValueState[src]

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

Attempt to deserialize the value from input.

fn top_decode_or_exit<I: TopDecodeInput, ExitCtx: Clone>(
    top_input: 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 TopEncode for ValueState[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 ValueState[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 StructuralPartialEq for ValueState[src]

Auto Trait Implementations

impl Send for ValueState

impl Sync for ValueState

impl Unpin for ValueState

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, serializer: &mut ArgBuffer) -> Result<(), SCError>[src]

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

pub fn dyn_load<I, D>(loader: &mut D, arg_id: 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, api: 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, 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.