[][src]Enum elrond_wasm::call_data::DeserializerResult

pub enum DeserializerResult<T, E> {
    Res(T),
    NoMore,
    Err(E),
}

Variants

Res(T)
NoMore
Err(E)

Trait Implementations

impl<T: Debug, E: Debug> Debug for DeserializerResult<T, E>[src]

impl<T: Eq, E: Eq> Eq for DeserializerResult<T, E>[src]

impl<T: PartialEq, E: PartialEq> PartialEq<DeserializerResult<T, E>> for DeserializerResult<T, E>[src]

impl<T, E> StructuralEq for DeserializerResult<T, E>[src]

impl<T, E> StructuralPartialEq for DeserializerResult<T, E>[src]

Auto Trait Implementations

impl<T, E> Send for DeserializerResult<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for DeserializerResult<T, E> where
    E: Sync,
    T: Sync

impl<T, E> Unpin for DeserializerResult<T, E> where
    E: Unpin,
    T: Unpin

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> From<T> for T[src]

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

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.