pub struct Dates {
pub day_names: Vec<String>,
pub day_names_short: Vec<String>,
pub months: Vec<String>,
pub months_short: Vec<String>,
pub months_letter: Vec<String>,
pub date_formats: DateFormats,
pub time_formats: DateFormats,
pub date_time_formats: DateFormats,
}Fields§
§day_names: Vec<String>§day_names_short: Vec<String>§months: Vec<String>§months_short: Vec<String>§months_letter: Vec<String>§date_formats: DateFormats§time_formats: DateFormats§date_time_formats: DateFormatsTrait Implementations§
Auto Trait Implementations§
impl Freeze for Dates
impl RefUnwindSafe for Dates
impl Send for Dates
impl Sync for Dates
impl Unpin for Dates
impl UnsafeUnpin for Dates
impl UnwindSafe for Dates
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