Struct cranelift_wasm::Table [−][src]
pub struct Table {
pub wasm_ty: WasmType,
pub ty: TableElementType,
pub minimum: u32,
pub maximum: Option<u32>,
}Expand description
WebAssembly table.
Fields
wasm_ty: WasmTypeThe table elements’ Wasm type.
ty: TableElementTypeThe table elements’ Cranelift type.
minimum: u32The minimum number of elements in the table.
maximum: Option<u32>The maximum number of elements in the table.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Table
impl UnwindSafe for Table
Blanket Implementations
Mutably borrows from an owned value. Read more