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

source§

fn clone(&self) -> ComponentInstanceType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ComponentInstanceType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl TypeData for ComponentInstanceType

§

type Id = ComponentInstanceTypeId

The identifier for this type data.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.