pub trait ValueFormatter<V> {
    fn format(value: &V) -> String;
}
Expand description

Determine how we can format a value in a coordinate system by default

Required Methods

Format the value

Implementors