Struct wasm_encoder::CoreTypeSection
source · pub struct CoreTypeSection { /* private fields */ }
Expand description
An encoder for the core type section of WebAssembly components.
Example
use wasm_encoder::{Component, CoreTypeSection, ModuleType};
let mut types = CoreTypeSection::new();
types.module(&ModuleType::new());
let mut component = Component::new();
component.section(&types);
let bytes = component.finish();
Implementations§
source§impl CoreTypeSection
impl CoreTypeSection
sourcepub fn ty(&mut self) -> CoreTypeEncoder<'_>
pub fn ty(&mut self) -> CoreTypeEncoder<'_>
Encode a type into this section.
The returned encoder must be finished before adding another type.
sourcepub fn function<P, R>(&mut self, params: P, results: R) -> &mut Selfwhere
P: IntoIterator<Item = ValType>,
P::IntoIter: ExactSizeIterator,
R: IntoIterator<Item = ValType>,
R::IntoIter: ExactSizeIterator,
pub fn function<P, R>(&mut self, params: P, results: R) -> &mut Selfwhere P: IntoIterator<Item = ValType>, P::IntoIter: ExactSizeIterator, R: IntoIterator<Item = ValType>, R::IntoIter: ExactSizeIterator,
Define a function type in this type section.
sourcepub fn module(&mut self, ty: &ModuleType) -> &mut Self
pub fn module(&mut self, ty: &ModuleType) -> &mut Self
Define a module type in this type section.
Currently this is only used for core type sections in components.
Trait Implementations§
source§impl Clone for CoreTypeSection
impl Clone for CoreTypeSection
source§fn clone(&self) -> CoreTypeSection
fn clone(&self) -> CoreTypeSection
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 ComponentSection for CoreTypeSection
impl ComponentSection for CoreTypeSection
source§impl Debug for CoreTypeSection
impl Debug for CoreTypeSection
source§impl Default for CoreTypeSection
impl Default for CoreTypeSection
source§fn default() -> CoreTypeSection
fn default() -> CoreTypeSection
Returns the “default value” for a type. Read more