pub enum MeasureWithUnitRef {
LengthMeasureWithUnit(LengthMeasureWithUnitId),
MassMeasureWithUnit(MassMeasureWithUnitId),
MeasureRepresentationItem(MeasureRepresentationItemId),
MeasureWithUnit(MeasureWithUnitId),
PlaneAngleMeasureWithUnit(PlaneAngleMeasureWithUnitId),
RatioMeasureWithUnit(RatioMeasureWithUnitId),
UncertaintyMeasureWithUnit(UncertaintyMeasureWithUnitId),
Complex(ComplexUnitId),
}Variants§
LengthMeasureWithUnit(LengthMeasureWithUnitId)
MassMeasureWithUnit(MassMeasureWithUnitId)
MeasureRepresentationItem(MeasureRepresentationItemId)
MeasureWithUnit(MeasureWithUnitId)
PlaneAngleMeasureWithUnit(PlaneAngleMeasureWithUnitId)
RatioMeasureWithUnit(RatioMeasureWithUnitId)
UncertaintyMeasureWithUnit(UncertaintyMeasureWithUnitId)
Complex(ComplexUnitId)
Implementations§
Source§impl MeasureWithUnitRef
impl MeasureWithUnitRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> MeasureWithUnitRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for MeasureWithUnitRef
impl Clone for MeasureWithUnitRef
Source§fn clone(&self) -> MeasureWithUnitRef
fn clone(&self) -> MeasureWithUnitRef
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 MeasureWithUnitRef
impl Debug for MeasureWithUnitRef
Source§impl PartialEq for MeasureWithUnitRef
impl PartialEq for MeasureWithUnitRef
Source§fn eq(&self, other: &MeasureWithUnitRef) -> bool
fn eq(&self, other: &MeasureWithUnitRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MeasureWithUnitRef
Auto Trait Implementations§
impl Freeze for MeasureWithUnitRef
impl RefUnwindSafe for MeasureWithUnitRef
impl Send for MeasureWithUnitRef
impl Sync for MeasureWithUnitRef
impl Unpin for MeasureWithUnitRef
impl UnsafeUnpin for MeasureWithUnitRef
impl UnwindSafe for MeasureWithUnitRef
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