Struct wasm_encoder::ComponentType
source · pub struct ComponentType { /* private fields */ }
Expand description
Represents a component type.
Implementations§
source§impl ComponentType
impl ComponentType
sourcepub fn core_type(&mut self) -> CoreTypeEncoder<'_>
pub fn core_type(&mut self) -> CoreTypeEncoder<'_>
Define a core type in this component type.
The returned encoder must be used before adding another definition.
sourcepub fn ty(&mut self) -> ComponentTypeEncoder<'_>
pub fn ty(&mut self) -> ComponentTypeEncoder<'_>
Define a type in this component type.
The returned encoder must be used before adding another definition.
sourcepub fn alias(&mut self, alias: Alias<'_>) -> &mut Self
pub fn alias(&mut self, alias: Alias<'_>) -> &mut Self
Defines an alias for an exported item of a prior instance or an outer type.
sourcepub fn import(&mut self, name: &str, url: &str, ty: ComponentTypeRef) -> &mut Self
pub fn import(&mut self, name: &str, url: &str, ty: ComponentTypeRef) -> &mut Self
Defines an import in this component type.
sourcepub fn export(&mut self, name: &str, url: &str, ty: ComponentTypeRef) -> &mut Self
pub fn export(&mut self, name: &str, url: &str, ty: ComponentTypeRef) -> &mut Self
Defines an export in this component type.
sourcepub fn core_type_count(&self) -> u32
pub fn core_type_count(&self) -> u32
Gets the number of core types that have been added to this component type.
sourcepub fn type_count(&self) -> u32
pub fn type_count(&self) -> u32
Gets the number of types that have been added or aliased in this component type.
Trait Implementations§
source§impl Clone for ComponentType
impl Clone for ComponentType
source§fn clone(&self) -> ComponentType
fn clone(&self) -> ComponentType
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 ComponentType
impl Debug for ComponentType
source§impl Default for ComponentType
impl Default for ComponentType
source§fn default() -> ComponentType
fn default() -> ComponentType
Returns the “default value” for a type. Read more