pub enum ConditionMetadata<'a> {
Component {
type_id: TypeId,
metadata: &'a ComponentMetadata,
},
Alias {
alias_type: TypeId,
target_type: TypeId,
metadata: &'a ComponentAliasMetadata,
},
}Expand description
Metadata for the entity which is currently evaluated for registration.
Variants§
Trait Implementations§
source§impl<'a> Clone for ConditionMetadata<'a>
impl<'a> Clone for ConditionMetadata<'a>
source§fn clone(&self) -> ConditionMetadata<'a>
fn clone(&self) -> ConditionMetadata<'a>
Returns a copy 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 more