pub struct Export {
pub name: String,
pub kind: ExternalKind,
pub index: u32,
/* private fields */
}
Expand description
Represents an export in a WebAssembly module.
Fields§
§name: String
The name of the exported item.
kind: ExternalKind
The kind of the export.
index: u32
The index of the exported item.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Export
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