pub trait ValueFormatter<V> {
    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

Format the value

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

Implementors