Enum near_vm_logic::VMKind[][src]

pub enum VMKind {
    Wasmer0,
    Wasmtime,
    Wasmer1,
}

Variants

Wasmer0

Wasmer 0.17.x VM.

Wasmtime

Wasmtime VM.

Wasmer1

Wasmer 1.x VM.

Trait Implementations

impl BorshDeserialize for VMKind[src]

impl BorshSerialize for VMKind[src]

impl Clone for VMKind[src]

impl Copy for VMKind[src]

impl Debug for VMKind[src]

impl Default for VMKind[src]

impl<'de> Deserialize<'de> for VMKind[src]

impl Hash for VMKind[src]

impl Serialize for VMKind[src]

Auto Trait Implementations

impl RefUnwindSafe for VMKind

impl Send for VMKind

impl Sync for VMKind

impl Unpin for VMKind

impl UnwindSafe for VMKind

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.