pub struct Global<'a> {
pub span: Span,
pub id: Option<Id<'a>>,
pub name: Option<NameAnnotation<'a>>,
pub exports: InlineExport<'a>,
pub ty: GlobalType<'a>,
pub kind: GlobalKind<'a>,
}
Expand description
A WebAssembly global in a module
Fields
span: Span
Where this global
was defined.
id: Option<Id<'a>>
An optional name to reference this global by
name: Option<NameAnnotation<'a>>
An optional name for this function stored in the custom name
section.
exports: InlineExport<'a>
If present, inline export annotations which indicate names this definition should be exported under.
ty: GlobalType<'a>
The type of this global, both its value type and whether it’s mutable.
kind: GlobalKind<'a>
What kind of global this defined as.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Global<'a>
impl<'a> Send for Global<'a>
impl<'a> Sync for Global<'a>
impl<'a> Unpin for Global<'a>
impl<'a> UnwindSafe for Global<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more