pub enum DateFormat {
MonthDashDayDashYear,
DayDashMonthDashYear,
YearDashMonthDashDay,
MonthDotDayDotYear,
DayDotMonthDotYear,
YearDotMonthDotDay,
}Expand description
Date format options for Protocol 3
Variants§
MonthDashDayDashYear
Format: MM-DD-YY
DayDashMonthDashYear
Format: DD-MM-YY
YearDashMonthDashDay
Format: YY-MM-DD
MonthDotDayDotYear
Format: MM.DD.YY
DayDotMonthDotYear
Format: DD.MM.YY
YearDotMonthDotDay
Format: YY.MM.DD
Trait Implementations§
Source§impl Clone for DateFormat
impl Clone for DateFormat
Source§fn clone(&self) -> DateFormat
fn clone(&self) -> DateFormat
Returns a duplicate of the value. Read more
1.0.0 · 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 DateFormat
impl Debug for DateFormat
Source§impl PartialEq for DateFormat
impl PartialEq for DateFormat
impl Copy for DateFormat
impl Eq for DateFormat
impl StructuralPartialEq for DateFormat
Auto Trait Implementations§
impl Freeze for DateFormat
impl RefUnwindSafe for DateFormat
impl Send for DateFormat
impl Sync for DateFormat
impl Unpin for DateFormat
impl UnwindSafe for DateFormat
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