Struct wasmer_interface_types_fl::ast::Adapter[][src]

pub struct Adapter {
    pub function_type: u32,
    pub instructions: Vec<Instruction>,
}

Represents an adapter.

Fields

function_type: u32

The adapter function type.

instructions: Vec<Instruction>

The instructions.

Trait Implementations

impl Clone for Adapter[src]

impl Debug for Adapter[src]

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

impl Eq for Adapter[src]

impl Hash for Adapter[src]

impl<'a> Parse<'a> for Adapter[src]

impl PartialEq<Adapter> for Adapter[src]

impl Serialize for Adapter[src]

impl StructuralEq for Adapter[src]

impl StructuralPartialEq for Adapter[src]

impl<W> ToBytes<W> for Adapter where
    W: Write
[src]

Encode an Adapter into bytes.

Decoder is in decoders::binary::adapters.

impl ToString for &Adapter[src]

Encode an Adapter into a string.

Auto Trait Implementations

impl RefUnwindSafe for Adapter

impl Send for Adapter

impl Sync for Adapter

impl Unpin for Adapter

impl UnwindSafe for Adapter

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> 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.