Struct wasmtime_environ::wasmparser::types::ComponentInstanceType
source · pub struct ComponentInstanceType {
pub exports: IndexMap<String, ComponentEntityType>,
pub defined_resources: Vec<ResourceId>,
pub explicit_resources: IndexMap<ResourceId, Vec<usize>>,
/* private fields */
}
Expand description
Represents a type of a component instance.
Fields§
§exports: IndexMap<String, ComponentEntityType>
The list of exports, keyed by name, that this instance has.
An optional URL and type of each export is provided as well.
defined_resources: Vec<ResourceId>
The list of “defined resources” or those which are closed over in this instance type.
This list is populated, for example, when the type of an instance is declared and it contains its own resource type exports defined internally. For example:
(component
(type (instance
(export "x" (type sub resource)) ;; one `defined_resources` entry
))
)
This list is also a bit of an oddity, however, because the type of a concrete instance will always have this as empty. For example:
(component
(type $t (instance (export "x" (type sub resource))))
;; the type of this instance has no defined resources
(import "i" (instance (type $t)))
)
This list ends up only being populated for instance types declared in a module which aren’t yet “attached” to anything. Once something is instantiated, imported, exported, or otherwise refers to a concrete instance then this list is always empty. For concrete instances defined resources are tracked in the component state or component type.
explicit_resources: IndexMap<ResourceId, Vec<usize>>
The list of all resources that are explicitly exported from this instance type along with the path they’re exported at.
Trait Implementations§
source§impl Clone for ComponentInstanceType
impl Clone for ComponentInstanceType
source§fn clone(&self) -> ComponentInstanceType
fn clone(&self) -> ComponentInstanceType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ComponentInstanceType
impl Debug for ComponentInstanceType
source§impl TypeData for ComponentInstanceType
impl TypeData for ComponentInstanceType
source§type Id = ComponentInstanceTypeId
type Id = ComponentInstanceTypeId
Auto Trait Implementations§
impl Freeze for ComponentInstanceType
impl RefUnwindSafe for ComponentInstanceType
impl Send for ComponentInstanceType
impl Sync for ComponentInstanceType
impl Unpin for ComponentInstanceType
impl UnwindSafe for ComponentInstanceType
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
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)
clone_to_uninit
)