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