Trait wasmparser::WasmTableType[][src]

pub trait WasmTableType {
    type Type: WasmType;
    fn element_type(&self) -> &Self::Type;
fn initial_limit(&self) -> u32;
fn maximum_limit(&self) -> Option<u32>; }

Types that qualify as Wasm table types for validation purposes.

Associated Types

type Type: WasmType[src]

A type that is comparable with Wasm types.

Loading content...

Required methods

fn element_type(&self) -> &Self::Type[src]

Returns the element type of the table.

fn initial_limit(&self) -> u32[src]

Returns the initial limit of the table.

fn maximum_limit(&self) -> Option<u32>[src]

Returns the maximum limit of the table if any.

Loading content...

Implementors

impl WasmTableType for TableType[src]

type Type = Type

Loading content...