pub enum DatumOrCommonDatumRef {
CommonDatum(CommonDatumId),
Datum(DatumId),
DatumReferenceElement(DatumReferenceElementId),
CommonDatumList(Vec<DatumReferenceElementRef>),
Complex(ComplexUnitId),
}Variants§
CommonDatum(CommonDatumId)
Datum(DatumId)
DatumReferenceElement(DatumReferenceElementId)
CommonDatumList(Vec<DatumReferenceElementRef>)
Complex(ComplexUnitId)
Implementations§
Trait Implementations§
Source§impl Clone for DatumOrCommonDatumRef
impl Clone for DatumOrCommonDatumRef
Source§fn clone(&self) -> DatumOrCommonDatumRef
fn clone(&self) -> DatumOrCommonDatumRef
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 DatumOrCommonDatumRef
impl Debug for DatumOrCommonDatumRef
Source§impl PartialEq for DatumOrCommonDatumRef
impl PartialEq for DatumOrCommonDatumRef
Source§fn eq(&self, other: &DatumOrCommonDatumRef) -> bool
fn eq(&self, other: &DatumOrCommonDatumRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatumOrCommonDatumRef
Auto Trait Implementations§
impl Freeze for DatumOrCommonDatumRef
impl RefUnwindSafe for DatumOrCommonDatumRef
impl Send for DatumOrCommonDatumRef
impl Sync for DatumOrCommonDatumRef
impl Unpin for DatumOrCommonDatumRef
impl UnsafeUnpin for DatumOrCommonDatumRef
impl UnwindSafe for DatumOrCommonDatumRef
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