pub trait ValueFormatter<V> {
// Provided methods
fn format(_value: &V) -> String { ... }
fn format_ext(&self, value: &V) -> String { ... }
}
Expand description
Determine how we can format a value in a coordinate system by default
Provided Methods§
Sourcefn format_ext(&self, value: &V) -> String
fn format_ext(&self, value: &V) -> String
Determine how we can format a value in a coordinate system by default
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.