pub struct ChronoLocal { /* private fields */ }Available on crate features
fmt and std and chrono only.Expand description
Formats local times and UTC times with FormatTime implementations
that use the chrono crate.
Formats the current local time using a formatter from the chrono crate.
Implementations§
Source§impl ChronoLocal
impl ChronoLocal
Sourcepub fn rfc3339_seconds() -> Self
pub fn rfc3339_seconds() -> Self
RFC3339 with no fractional seconds and ‘Z’.
Sourcepub fn rfc3339_millis() -> Self
pub fn rfc3339_millis() -> Self
RFC3339 with 3 fractional digits (milliseconds) and ‘Z’.
Sourcepub fn rfc3339_nanos() -> Self
pub fn rfc3339_nanos() -> Self
RFC3339 with 9 fractional digits (nanoseconds) and ‘Z’.
Sourcepub fn time_only_secs() -> Self
pub fn time_only_secs() -> Self
Time-of-day with whole seconds, no suffix: HH:MM:SS
Sourcepub fn time_only_millis() -> Self
pub fn time_only_millis() -> Self
Time-of-day with milliseconds, no suffix: HH:MM:SS.mmm
Sourcepub fn time_only_micros() -> Self
pub fn time_only_micros() -> Self
Time-of-day with microseconds, no suffix: HH:MM:SS.uuuuuu
Sourcepub fn new(format_string: String) -> Self
pub fn new(format_string: String) -> Self
Format the time using the given format string.
See chrono::format::strftime for details on the supported syntax.
Trait Implementations§
Source§impl Clone for ChronoLocal
impl Clone for ChronoLocal
Source§fn clone(&self) -> ChronoLocal
fn clone(&self) -> ChronoLocal
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 ChronoLocal
impl Debug for ChronoLocal
Source§impl Default for ChronoLocal
impl Default for ChronoLocal
Source§fn default() -> ChronoLocal
fn default() -> ChronoLocal
Returns the “default value” for a type. Read more
Source§impl FormatTime for ChronoLocal
impl FormatTime for ChronoLocal
Source§impl PartialEq for ChronoLocal
impl PartialEq for ChronoLocal
impl Eq for ChronoLocal
impl StructuralPartialEq for ChronoLocal
Auto Trait Implementations§
impl Freeze for ChronoLocal
impl RefUnwindSafe for ChronoLocal
impl Send for ChronoLocal
impl Sync for ChronoLocal
impl Unpin for ChronoLocal
impl UnwindSafe for ChronoLocal
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