Struct wast::component::CoreModule
source · [−]pub struct CoreModule<'a> {
pub span: Span,
pub id: Option<Id<'a>>,
pub name: Option<NameAnnotation<'a>>,
pub exports: InlineExport<'a>,
pub kind: CoreModuleKind<'a>,
}
Expand description
A core WebAssembly module to be created as part of a component.
This is a member of the core module section.
Fields
span: Span
Where this core module
was defined.
id: Option<Id<'a>>
An identifier that this module is resolved with (optionally) for name resolution.
name: Option<NameAnnotation<'a>>
An optional name for this module stored in the custom name
section.
exports: InlineExport<'a>
If present, inline export annotations which indicate names this definition should be exported under.
kind: CoreModuleKind<'a>
What kind of module this is, be it an inline-defined or imported one.
Trait Implementations
sourceimpl<'a> Debug for CoreModule<'a>
impl<'a> Debug for CoreModule<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for CoreModule<'a>
impl<'a> Send for CoreModule<'a>
impl<'a> Sync for CoreModule<'a>
impl<'a> Unpin for CoreModule<'a>
impl<'a> UnwindSafe for CoreModule<'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