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