Enum cranelift_wasm::wasmparser::ElementItems
source · pub enum ElementItems<'a> {
Functions(SectionLimited<'a, u32>),
Expressions(SectionLimited<'a, ConstExpr<'a>>),
}
Expand description
Represents the items of an element segment.
Variants§
Functions(SectionLimited<'a, u32>)
This element contains function indices.
Expressions(SectionLimited<'a, ConstExpr<'a>>)
This element contains constant expressions used to initialize the table.
Trait Implementations§
source§impl<'a> Clone for ElementItems<'a>
impl<'a> Clone for ElementItems<'a>
source§fn clone(&self) -> ElementItems<'a>
fn clone(&self) -> ElementItems<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more