pub enum GeneralPropertyRef {
GeneralProperty(GeneralPropertyId),
Complex(ComplexUnitId),
}Variants§
GeneralProperty(GeneralPropertyId)
Complex(ComplexUnitId)
Implementations§
Source§impl GeneralPropertyRef
impl GeneralPropertyRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> GeneralPropertyRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for GeneralPropertyRef
impl Clone for GeneralPropertyRef
Source§fn clone(&self) -> GeneralPropertyRef
fn clone(&self) -> GeneralPropertyRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GeneralPropertyRef
impl Debug for GeneralPropertyRef
Source§impl PartialEq for GeneralPropertyRef
impl PartialEq for GeneralPropertyRef
Source§fn eq(&self, other: &GeneralPropertyRef) -> bool
fn eq(&self, other: &GeneralPropertyRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GeneralPropertyRef
Auto Trait Implementations§
impl Freeze for GeneralPropertyRef
impl RefUnwindSafe for GeneralPropertyRef
impl Send for GeneralPropertyRef
impl Sync for GeneralPropertyRef
impl Unpin for GeneralPropertyRef
impl UnsafeUnpin for GeneralPropertyRef
impl UnwindSafe for GeneralPropertyRef
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
Mutably borrows from an owned value. Read more