pub trait IntoLogRange {
    type ValueType: LogScalable;

    fn log_scale(self) -> LogRangeExt<Self::ValueType>;
}
Expand description

Convert a range to a log scale coordinate spec

Required Associated Types

The type of the value

Required Methods

Make the log scale coordinate

Implementations on Foreign Types

Implementors