Enum wast::core::GlobalKind
source · [−]pub enum GlobalKind<'a> {
Import(InlineImport<'a>),
Inline(Expression<'a>),
}
Expand description
Different kinds of globals that can be defined in a module.
Variants
Import(InlineImport<'a>)
A global which is actually defined as an import, such as:
(global i32 (import "foo" "bar"))
Inline(Expression<'a>)
A global defined inline in the module itself
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for GlobalKind<'a>
impl<'a> Send for GlobalKind<'a>
impl<'a> Sync for GlobalKind<'a>
impl<'a> Unpin for GlobalKind<'a>
impl<'a> UnwindSafe for GlobalKind<'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