pub enum VariableOrPropertyId {
VariableId(VariableId),
PropertyId(PropertyId),
}
Variants§
VariableId(VariableId)
PropertyId(PropertyId)
Trait Implementations§
source§impl Clone for VariableOrPropertyId
impl Clone for VariableOrPropertyId
source§fn clone(&self) -> VariableOrPropertyId
fn clone(&self) -> VariableOrPropertyId
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 moresource§impl Debug for VariableOrPropertyId
impl Debug for VariableOrPropertyId
source§impl From<PropertyId> for VariableOrPropertyId
impl From<PropertyId> for VariableOrPropertyId
source§fn from(item: PropertyId) -> VariableOrPropertyId
fn from(item: PropertyId) -> VariableOrPropertyId
Converts to this type from the input type.
source§impl From<VariableId> for VariableOrPropertyId
impl From<VariableId> for VariableOrPropertyId
source§fn from(item: VariableId) -> VariableOrPropertyId
fn from(item: VariableId) -> VariableOrPropertyId
Converts to this type from the input type.