pub struct ComponentType {
    pub imports: IndexMap<String, ComponentEntityType>,
    pub exports: IndexMap<String, ComponentEntityType>,
    pub imported_resources: Vec<(ResourceId, Vec<usize>)>,
    pub defined_resources: Vec<(ResourceId, Vec<usize>)>,
    pub explicit_resources: IndexMap<ResourceId, Vec<usize>>,
    /* private fields */
}
Expand description

Represents a type of a component.

Fields§

§imports: IndexMap<String, ComponentEntityType>

The imports of the component type.

Each import has its own kebab-name and an optional URL listed. Note that the set of import names is disjoint with the set of export names.

§exports: IndexMap<String, ComponentEntityType>

The exports of the component type.

Each export has its own kebab-name and an optional URL listed. Note that the set of export names is disjoint with the set of import names.

§imported_resources: Vec<(ResourceId, Vec<usize>)>

Universally quantified resources required to be provided when instantiating this component type.

Each resource in this map is explicitly imported somewhere in the imports map. The “path” to where it’s imported is specified by the Vec<usize> payload here. For more information about the indexes see the documentation on ComponentState::imported_resources.

This should technically be inferrable from the structure of imports, but it’s stored as an auxiliary set for subtype checking and instantiation.

Note that this is not a set of all resources referred to by the imports. Instead it’s only those created, relative to the internals of this component, by the imports.

§defined_resources: Vec<(ResourceId, Vec<usize>)>

The dual of the imported_resources, or the set of defined resources – those created through the instantiation process which are unique to this component.

This set is similar to the imported_resources set but it’s those contained within the exports. Instantiating this component will create fresh new versions of all of these resources. The path here is within the exports array.

§explicit_resources: IndexMap<ResourceId, Vec<usize>>

The set of all resources which are explicitly exported by this component, and where they’re exported.

This mapping is stored separately from defined_resources to ensure that it contains all exported resources, not just those which are defined. That means that this can cover reexports of imported resources, exports of local resources, or exports of closed-over resources for example.

Trait Implementations§

source§

impl Clone for ComponentType

source§

fn clone(&self) -> ComponentType

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 ComponentType

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.