pub enum ProductDefinitionRelationshipRef {
AssemblyComponentUsage(AssemblyComponentUsageId),
MakeFromUsageOption(MakeFromUsageOptionId),
NextAssemblyUsageOccurrence(NextAssemblyUsageOccurrenceId),
ProductDefinitionRelationship(ProductDefinitionRelationshipId),
ProductDefinitionUsage(ProductDefinitionUsageId),
Complex(ComplexUnitId),
}Variants§
AssemblyComponentUsage(AssemblyComponentUsageId)
MakeFromUsageOption(MakeFromUsageOptionId)
NextAssemblyUsageOccurrence(NextAssemblyUsageOccurrenceId)
ProductDefinitionRelationship(ProductDefinitionRelationshipId)
ProductDefinitionUsage(ProductDefinitionUsageId)
Complex(ComplexUnitId)
Implementations§
Source§impl ProductDefinitionRelationshipRef
impl ProductDefinitionRelationshipRef
pub fn resolve<'m>( &self, model: &'m StepModel, ) -> ProductDefinitionRelationshipRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for ProductDefinitionRelationshipRef
impl Clone for ProductDefinitionRelationshipRef
Source§fn clone(&self) -> ProductDefinitionRelationshipRef
fn clone(&self) -> ProductDefinitionRelationshipRef
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 PartialEq for ProductDefinitionRelationshipRef
impl PartialEq for ProductDefinitionRelationshipRef
Source§fn eq(&self, other: &ProductDefinitionRelationshipRef) -> bool
fn eq(&self, other: &ProductDefinitionRelationshipRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProductDefinitionRelationshipRef
Auto Trait Implementations§
impl Freeze for ProductDefinitionRelationshipRef
impl RefUnwindSafe for ProductDefinitionRelationshipRef
impl Send for ProductDefinitionRelationshipRef
impl Sync for ProductDefinitionRelationshipRef
impl Unpin for ProductDefinitionRelationshipRef
impl UnsafeUnpin for ProductDefinitionRelationshipRef
impl UnwindSafe for ProductDefinitionRelationshipRef
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