pub trait HasTracableInfo {
// Required methods
fn get_tracable_info(&self) -> TracableInfo;
fn set_tracable_info(self, info: TracableInfo) -> Self;
}
Expand description
Trait to indicate TracableInfo
is provided.
Required Methods§
fn get_tracable_info(&self) -> TracableInfo
fn set_tracable_info(self, info: TracableInfo) -> Self
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.