Struct wasm_encoder::ExportSection
source · pub struct ExportSection { /* private fields */ }
Expand description
An encoder for the export section of WebAssembly module.
§Example
use wasm_encoder::{Module, ExportSection, ExportKind};
let mut exports = ExportSection::new();
exports.export("foo", ExportKind::Func, 0);
let mut module = Module::new();
module.section(&exports);
let bytes = module.finish();
Implementations§
source§impl ExportSection
impl ExportSection
sourcepub fn export(&mut self, name: &str, kind: ExportKind, index: u32) -> &mut Self
pub fn export(&mut self, name: &str, kind: ExportKind, index: u32) -> &mut Self
Define an export in the export section.
Trait Implementations§
source§impl Clone for ExportSection
impl Clone for ExportSection
source§fn clone(&self) -> ExportSection
fn clone(&self) -> ExportSection
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 ExportSection
impl Debug for ExportSection
source§impl Default for ExportSection
impl Default for ExportSection
source§fn default() -> ExportSection
fn default() -> ExportSection
Returns the “default value” for a type. Read more
source§impl Encode for ExportSection
impl Encode for ExportSection
Auto Trait Implementations§
impl Freeze for ExportSection
impl RefUnwindSafe for ExportSection
impl Send for ExportSection
impl Sync for ExportSection
impl Unpin for ExportSection
impl UnwindSafe for ExportSection
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
)