[][src]Trait wasmparser::WasmTableType

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

A type that is comparable with Wasm types.

Loading content...

Required methods

fn element_type(&self) -> &Self::Type

Returns the element type of the table.

fn initial_limit(&self) -> u32

Returns the initial limit of the table.

fn maximum_limit(&self) -> Option<u32>

Returns the maximum limit of the table if any.

Loading content...

Implementors

impl WasmTableType for TableType[src]

type Type = Type

Loading content...