pub struct CompressedTrace {
pub events: Vec<TraceEvent>,
pub original_count: usize,
pub level: Level,
pub certificate: TraceCertificate,
}Expand description
Result of trace compression.
Fields§
§events: Vec<TraceEvent>The compressed events.
original_count: usizeOriginal event count (before compression).
level: LevelCompression level used.
certificate: TraceCertificateCertificate built from compressed events.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompressedTrace
impl RefUnwindSafe for CompressedTrace
impl Send for CompressedTrace
impl Sync for CompressedTrace
impl Unpin for CompressedTrace
impl UnsafeUnpin for CompressedTrace
impl UnwindSafe for CompressedTrace
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).