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>,
}
Available on crate feature
component-model
only.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§
Source§impl<'a> Debug for CoreModule<'a>
impl<'a> Debug for CoreModule<'a>
Auto Trait Implementations§
impl<'a> Freeze for CoreModule<'a>
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§
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