pub struct ExtendedDateTimeFormat;Expand description
ISO 8601-1:2019 Extended Date Time Format, of section 5.4.2. Equivalent to YYYY-MM-DDTHH:mm:ssZ/2023-12-31T05:10:25Z
Trait Implementations§
Source§impl Format<UTCDateTime> for ExtendedDateTimeFormat
impl Format<UTCDateTime> for ExtendedDateTimeFormat
Source§fn format(&self, date: &UTCDateTime) -> String
fn format(&self, date: &UTCDateTime) -> String
Implementation-specific format of a date or time
Source§impl FormatParser<UTCDateTime> for ExtendedDateTimeFormat
impl FormatParser<UTCDateTime> for ExtendedDateTimeFormat
Source§fn try_from(&self, data: &str) -> Result<UTCDateTime, FormatError>
fn try_from(&self, data: &str) -> Result<UTCDateTime, FormatError>
Tries to parse the specified string into the resultant item.
Auto Trait Implementations§
impl Freeze for ExtendedDateTimeFormat
impl RefUnwindSafe for ExtendedDateTimeFormat
impl Send for ExtendedDateTimeFormat
impl Sync for ExtendedDateTimeFormat
impl Unpin for ExtendedDateTimeFormat
impl UnwindSafe for ExtendedDateTimeFormat
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