pub trait CaptureTrace {
type Trace;
// Required method
fn capture(&self) -> Self::Trace;
}Expand description
A trait to support custom implementations of traces
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".