pub trait NumericTrace {
// Required method
fn trace_as_num(msg: &str, value: &Self);
}Expand description
Trait for numeric types that can be traced with trace_num
Required Methods§
fn trace_as_num(msg: &str, value: &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.