Struct tinywasm_types::Export
source · pub struct Export {
pub name: Box<str>,
pub kind: ExternalKind,
pub index: u32,
}
Expand description
A WebAssembly Module Export
Fields§
§name: Box<str>
The name of the export.
kind: ExternalKind
The kind of the export.
index: u32
The index of the exported item.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Export
impl Send for Export
impl Sync for Export
impl Unpin for Export
impl UnwindSafe for Export
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