Struct wasmtime_environ::wasmparser::Element
source · pub struct Element<'a> {
pub kind: ElementKind<'a>,
pub items: ElementItems<'a>,
pub ty: ValType,
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: ValType
The type of the elements.
range: Range<usize>
The range of the the element segment.
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Element<'a>
impl<'a> Send for Element<'a>
impl<'a> Sync for Element<'a>
impl<'a> Unpin for Element<'a>
impl<'a> UnwindSafe for Element<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more