pub struct ComponentType { /* private fields */ }
Expand description
Represents a component type.
Implementations§
Source§impl ComponentType
impl ComponentType
Sourcepub fn new() -> Self
Available on crate feature component-model
only.
pub fn new() -> Self
component-model
only.Creates a new component type.
Sourcepub fn core_type(&mut self) -> ComponentCoreTypeEncoder<'_>
Available on crate feature component-model
only.
pub fn core_type(&mut self) -> ComponentCoreTypeEncoder<'_>
component-model
only.Define a core type in this component type.
The returned encoder must be used before adding another definition.
Sourcepub fn ty(&mut self) -> ComponentTypeEncoder<'_>
Available on crate feature component-model
only.
pub fn ty(&mut self) -> ComponentTypeEncoder<'_>
component-model
only.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
Available on crate feature component-model
only.
pub fn alias(&mut self, alias: Alias<'_>) -> &mut Self
component-model
only.Defines an alias for an exported item of a prior instance or an outer type.
Sourcepub fn import(&mut self, name: &str, ty: ComponentTypeRef) -> &mut Self
Available on crate feature component-model
only.
pub fn import(&mut self, name: &str, ty: ComponentTypeRef) -> &mut Self
component-model
only.Defines an import in this component type.
Sourcepub fn export(&mut self, name: &str, ty: ComponentTypeRef) -> &mut Self
Available on crate feature component-model
only.
pub fn export(&mut self, name: &str, ty: ComponentTypeRef) -> &mut Self
component-model
only.Defines an export in this component type.
Sourcepub fn core_type_count(&self) -> u32
Available on crate feature component-model
only.
pub fn core_type_count(&self) -> u32
component-model
only.Gets the number of core types that have been added to this component type.
Sourcepub fn type_count(&self) -> u32
Available on crate feature component-model
only.
pub fn type_count(&self) -> u32
component-model
only.Gets the number of types that have been added or aliased in this component type.
Sourcepub fn instance_count(&self) -> u32
Available on crate feature component-model
only.
pub fn instance_count(&self) -> u32
component-model
only.Gets the number of instances that have been defined in this component type through imports, exports, or aliases.
Trait Implementations§
Source§impl Clone for ComponentType
Available on crate feature component-model
only.
impl Clone for ComponentType
Available on crate feature
component-model
only.Source§fn clone(&self) -> ComponentType
fn clone(&self) -> ComponentType
Returns a duplicate 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
Available on crate feature component-model
only.
impl Debug for ComponentType
Available on crate feature
component-model
only.Source§impl Default for ComponentType
Available on crate feature component-model
only.
impl Default for ComponentType
Available on crate feature
component-model
only.Source§fn default() -> ComponentType
fn default() -> ComponentType
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComponentType
impl RefUnwindSafe for ComponentType
impl Send for ComponentType
impl Sync for ComponentType
impl Unpin for ComponentType
impl UnwindSafe for ComponentType
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