Struct wasm_encoder::ImportSection
source · pub struct ImportSection { /* private fields */ }
Expand description
An encoder for the import section of WebAssembly modules.
§Example
use wasm_encoder::{MemoryType, Module, ImportSection};
let mut imports = ImportSection::new();
imports.import(
"env",
"memory",
MemoryType {
minimum: 1,
maximum: None,
memory64: false,
shared: false,
page_size_log2: None,
}
);
let mut module = Module::new();
module.section(&imports);
let bytes = module.finish();
Implementations§
source§impl ImportSection
impl ImportSection
Trait Implementations§
source§impl Clone for ImportSection
impl Clone for ImportSection
source§fn clone(&self) -> ImportSection
fn clone(&self) -> ImportSection
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ImportSection
impl Debug for ImportSection
source§impl Default for ImportSection
impl Default for ImportSection
source§fn default() -> ImportSection
fn default() -> ImportSection
Returns the “default value” for a type. Read more
source§impl Encode for ImportSection
impl Encode for ImportSection
Auto Trait Implementations§
impl Freeze for ImportSection
impl RefUnwindSafe for ImportSection
impl Send for ImportSection
impl Sync for ImportSection
impl Unpin for ImportSection
impl UnwindSafe for ImportSection
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)