pub enum ProductConceptRef {
ProductConcept(ProductConceptId),
Complex(ComplexUnitId),
}Variants§
ProductConcept(ProductConceptId)
Complex(ComplexUnitId)
Implementations§
Source§impl ProductConceptRef
impl ProductConceptRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> ProductConceptRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for ProductConceptRef
impl Clone for ProductConceptRef
Source§fn clone(&self) -> ProductConceptRef
fn clone(&self) -> ProductConceptRef
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 ProductConceptRef
impl Debug for ProductConceptRef
Source§impl PartialEq for ProductConceptRef
impl PartialEq for ProductConceptRef
Source§fn eq(&self, other: &ProductConceptRef) -> bool
fn eq(&self, other: &ProductConceptRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProductConceptRef
Auto Trait Implementations§
impl Freeze for ProductConceptRef
impl RefUnwindSafe for ProductConceptRef
impl Send for ProductConceptRef
impl Sync for ProductConceptRef
impl Unpin for ProductConceptRef
impl UnsafeUnpin for ProductConceptRef
impl UnwindSafe for ProductConceptRef
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