pub struct InstanceType(/* private fields */);Expand description
Represents an instance type.
Implementations§
Source§impl InstanceType
impl InstanceType
Sourcepub fn new() -> Self
Available on crate feature component-model only.
pub fn new() -> Self
component-model only.Creates a new instance 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 instance 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 instance 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 outer core type alias 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 instance 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 instance 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 instance 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 imported or exported or aliased in this instance type.
Trait Implementations§
Source§impl Clone for InstanceType
Available on crate feature component-model only.
impl Clone for InstanceType
Available on crate feature
component-model only.Source§fn clone(&self) -> InstanceType
fn clone(&self) -> InstanceType
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 InstanceType
Available on crate feature component-model only.
impl Debug for InstanceType
Available on crate feature
component-model only.Source§impl Default for InstanceType
Available on crate feature component-model only.
impl Default for InstanceType
Available on crate feature
component-model only.Source§fn default() -> InstanceType
fn default() -> InstanceType
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstanceType
impl RefUnwindSafe for InstanceType
impl Send for InstanceType
impl Sync for InstanceType
impl Unpin for InstanceType
impl UnwindSafe for InstanceType
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