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