pub enum DateTimeSelectRefView<'m> {
CalendarDate(&'m CalendarDate),
Date(&'m Date),
DateAndTime(&'m DateAndTime),
LocalTime(&'m LocalTime),
Complex(&'m ComplexUnit),
}Variants§
CalendarDate(&'m CalendarDate)
Date(&'m Date)
DateAndTime(&'m DateAndTime)
LocalTime(&'m LocalTime)
Complex(&'m ComplexUnit)
Trait Implementations§
Source§impl<'m> Clone for DateTimeSelectRefView<'m>
impl<'m> Clone for DateTimeSelectRefView<'m>
Source§fn clone(&self) -> DateTimeSelectRefView<'m>
fn clone(&self) -> DateTimeSelectRefView<'m>
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 moreimpl<'m> Copy for DateTimeSelectRefView<'m>
Auto Trait Implementations§
impl<'m> Freeze for DateTimeSelectRefView<'m>
impl<'m> RefUnwindSafe for DateTimeSelectRefView<'m>
impl<'m> Send for DateTimeSelectRefView<'m>
impl<'m> Sync for DateTimeSelectRefView<'m>
impl<'m> Unpin for DateTimeSelectRefView<'m>
impl<'m> UnsafeUnpin for DateTimeSelectRefView<'m>
impl<'m> UnwindSafe for DateTimeSelectRefView<'m>
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