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