pub trait TraceSink: Send {
// Required method
fn record(&mut self, event: TraceEvent);
}Expand description
Sink that records events without panicking the runtime.
Required Methods§
fn record(&mut self, event: TraceEvent)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".