pub enum DateOrder {
YMD,
MDY,
DMY,
}Expand description
Preferred date component order for a language/locale.
Variants§
YMD
Year-Month-Day (ISO, Chinese, Japanese, Korean)
MDY
Month-Day-Year (US English)
DMY
Day-Month-Year (European, most of world)
Trait Implementations§
impl Copy for DateOrder
impl Eq for DateOrder
impl StructuralPartialEq for DateOrder
Auto Trait Implementations§
impl Freeze for DateOrder
impl RefUnwindSafe for DateOrder
impl Send for DateOrder
impl Sync for DateOrder
impl Unpin for DateOrder
impl UnsafeUnpin for DateOrder
impl UnwindSafe for DateOrder
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