Struct tracing_subscriber::fmt::time::OffsetTime
source · pub struct OffsetTime<F> { /* private fields */ }
Expand description
Formats the current time using a fixed offset and a formatter from the time
crate.
This is typically used as an alternative to [LocalTime
]. LocalTime
determines the offset
every time it formats a message, which may be unsound or fail. With OffsetTime
, the offset is
determined once. This makes it possible to do so while the program is still single-threaded and
handle any errors. However, this also means the offset cannot change while the program is
running (the offset will not change across DST changes).
Implementations§
source§impl<F: Formattable> OffsetTime<F>
impl<F: Formattable> OffsetTime<F>
sourcepub fn new(offset: UtcOffset, format: F) -> Self
pub fn new(offset: UtcOffset, format: F) -> Self
Returns a formatter that formats the current time using the time
crate with the provided
provided format and timezone offset. The format may be any type that implements the
Formattable
trait.
Typically, the offset will be the local offset, and format will be a format description
string, or one of the time
crate’s well-known formats.
If the format description is statically known, then the
format_description!
macro should be used. This is identical to the
time::format_description::parse
method, but runs at compile-time,
throwing an error if the format description is invalid. If the desired format
is not known statically (e.g., a user is providing a format string), then the
time::format_description::parse
method should be used. Note that this
method is fallible.
See the time
book for details on the format description syntax.
§Examples
Using the format_description!
macro:
use tracing_subscriber::fmt::{self, time::OffsetTime};
use time::macros::format_description;
use time::UtcOffset;
let offset = UtcOffset::current_local_offset().expect("should get local offset!");
let timer = OffsetTime::new(offset, format_description!("[hour]:[minute]:[second]"));
let subscriber = tracing_subscriber::fmt()
.with_timer(timer);
Using time::format_description::parse
:
use tracing_subscriber::fmt::{self, time::OffsetTime};
use time::UtcOffset;
let offset = UtcOffset::current_local_offset().expect("should get local offset!");
let time_format = time::format_description::parse("[hour]:[minute]:[second]")
.expect("format string should be valid!");
let timer = OffsetTime::new(offset, time_format);
let subscriber = tracing_subscriber::fmt()
.with_timer(timer);
Using the format_description!
macro requires enabling the time
crate’s “macros” feature flag.
Using a well-known format (this is equivalent to
[OffsetTime::local_rfc_3339
]):
use tracing_subscriber::fmt::{self, time::OffsetTime};
use time::UtcOffset;
let offset = UtcOffset::current_local_offset().expect("should get local offset!");
let timer = OffsetTime::new(offset, time::format_description::well_known::Rfc3339);
let subscriber = tracing_subscriber::fmt()
.with_timer(timer);
Trait Implementations§
source§impl<F: Clone> Clone for OffsetTime<F>
impl<F: Clone> Clone for OffsetTime<F>
source§fn clone(&self) -> OffsetTime<F>
fn clone(&self) -> OffsetTime<F>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more