pub struct WatModule {
pub name: Option<String>,
pub items: Vec<WatModuleField>,
}Expand description
A WebAssembly module.
Fields§
§name: Option<String>Optional name of the module.
items: Vec<WatModuleField>Fields within the module.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WatModule
impl RefUnwindSafe for WatModule
impl Send for WatModule
impl Sync for WatModule
impl Unpin for WatModule
impl UnsafeUnpin for WatModule
impl UnwindSafe for WatModule
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