pub trait InjectBacktrace {
type Output;
// Required methods
fn in_field(self, field: impl Into<String>) -> Self::Output;
fn in_tuple(self, index: usize) -> Self::Output;
fn in_array(self, index: usize) -> Self::Output;
}
Expand description
Allows to inject backtrace data.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.