pub trait ValueFormatter<V> {
// Required method
fn format(value: &V) -> String;
}
Expand description
Determine how we can format a value in a coordinate system by default
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.