pub struct SpanWallTime {
pub elapsed_busy_nanos: u64,
pub elapsed_idle_nanos: u64,
}Expand description
Wall time statistics for a span.
Fields§
§elapsed_busy_nanos: u64The elapsed wall time in nanoseconds while the span was entered.
elapsed_idle_nanos: u64The elapsed wall time in nanoseconds while the span was idle.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpanWallTime
impl RefUnwindSafe for SpanWallTime
impl Send for SpanWallTime
impl Sync for SpanWallTime
impl Unpin for SpanWallTime
impl UnsafeUnpin for SpanWallTime
impl UnwindSafe for SpanWallTime
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