Enum parity_wasm::elements::External [] [src]

pub enum External {
    Function(u32),
    Table(TableType),
    Memory(MemoryType),
    Global(GlobalType),
}

External to local binding.

Variants

Binds to function with index.

Describes local table definition to be imported as.

Describes local memory definition to be imported as.

Describes local global entry to be imported as.

Trait Implementations

impl Debug for External
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for External
[src]

impl Clone for External
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for External
[src]

[src]

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

[src]

This method tests for !=.

impl Deserialize for External
[src]

Serialization error produced by deserialization routine.

[src]

Deserialize type from serial i/o

impl Serialize for External
[src]

Serialization error produced by serialization routine.

[src]

Serialize type to serial i/o

Auto Trait Implementations

impl Send for External

impl Sync for External