pub enum Date {
Ccyymmdd,
Ccyymmddhhmmzhhmm,
}Variants§
Ccyymmdd
CCYYMMDD
Calendar date: C = Century ; Y = Year ; M = Month ; D = Day.
Ccyymmddhhmmzhhmm
CCYYMMDDHHMMZHHMM
Calendar date including time and time zone expressed in hours and minutes. ZHHMM = time zone given as offset from Coordinated Universal Time (UTC).
Trait Implementations§
Source§impl Description for Date
impl Description for Date
fn description(self) -> &'static str
Source§impl Ord for Date
impl Ord for Date
Source§impl PartialOrd for Date
impl PartialOrd for Date
impl Copy for Date
impl Eq for Date
impl StructuralPartialEq for Date
Auto Trait Implementations§
impl Freeze for Date
impl RefUnwindSafe for Date
impl Send for Date
impl Sync for Date
impl Unpin for Date
impl UnwindSafe for Date
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