pub struct Elem<'a> {
pub span: Span,
pub id: Option<Id<'a>>,
pub name: Option<NameAnnotation<'a>>,
pub kind: ElemKind<'a>,
pub payload: ElemPayload<'a>,
}
Expand description
An elem
segment in a WebAssembly module.
Fields
span: Span
Where this elem
was defined.
id: Option<Id<'a>>
An optional name by which to refer to this segment.
name: Option<NameAnnotation<'a>>
An optional name for this element stored in the custom name
section.
kind: ElemKind<'a>
The way this segment was defined in the module.
payload: ElemPayload<'a>
The payload of this element segment, typically a list of functions.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Elem<'a>
impl<'a> Send for Elem<'a>
impl<'a> Sync for Elem<'a>
impl<'a> Unpin for Elem<'a>
impl<'a> UnwindSafe for Elem<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more