TraceValue

Trait TraceValue 

Source
pub trait TraceValue: TraceValue { }
Expand description

A value that can be stored in a Trace; this is implemented for (), u8, u16, u32, u64, u128, usize, f32 and f64

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.

Implementors§

Source§

impl<T> TraceValue for T
where T: TraceValue,