Enum gluon_vm::api::RuntimeResult[][src]

pub enum RuntimeResult<T, E> {
    Return(T),
    Panic(E),
}

Variants

Trait Implementations

impl<T, E> From<StdResult<T, E>> for RuntimeResult<T, E>
[src]

Performs the conversion.

impl<T: VmType, E> VmType for RuntimeResult<T, E>
[src]

A version of Self which implements Any allowing a TypeId to be retrieved

Creates an gluon type which maps to Self in rust

How many extra arguments a function returning this type requires. Used for abstract types which when used in return position should act like they still need more arguments before they are called Read more

impl<'vm, T: Pushable<'vm>, E: Display> Pushable<'vm> for RuntimeResult<T, E>
[src]

Pushes self to stack. If the call is successful a single element should have been added to the stack and Ok(()) should be returned. If the call is unsuccessful Status:Error should be returned and the stack should be left intact Read more

Auto Trait Implementations

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

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