pub struct SystemTimestamp;Expand description
A timestamp formatter that produces RFC 3339 timestamps with microsecond
precision in UTC (e.g. 2026-02-20T12:00:00.000000Z).
This is the default timer used by JsonLayer. It uses a hand-written
formatter for minimal overhead — no chrono or time crate required.
Trait Implementations§
Source§impl FormatTime for SystemTimestamp
impl FormatTime for SystemTimestamp
Auto Trait Implementations§
impl Freeze for SystemTimestamp
impl RefUnwindSafe for SystemTimestamp
impl Send for SystemTimestamp
impl Sync for SystemTimestamp
impl Unpin for SystemTimestamp
impl UnsafeUnpin for SystemTimestamp
impl UnwindSafe for SystemTimestamp
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