pub trait LogScalable: Clone {
    fn as_f64(&self) -> f64;
    fn from_f64(f: f64) -> Self;
}
Expand description

The trait for the type that is able to be presented in the log scale. This trait is primarily used by LogRangeExt.

Required Methods

Make the conversion from the type to the floating point number

Convert a floating point number to the scale

Implementations on Foreign Types

Implementors