Struct cranelift_wasm::wasmparser::Element
source · pub struct Element<'a> {
pub kind: ElementKind<'a>,
pub items: ElementItems<'a>,
pub ty: Type,
pub range: Range<usize>,
}
Expand description
Represents a core WebAssembly element segment.
Fields§
§kind: ElementKind<'a>
The kind of the element segment.
items: ElementItems<'a>
The initial elements of the element segment.
ty: Type
The type of the elements.
range: Range<usize>
The range of the the element segment.