plotters::coord::combinators

Trait IntoLogRange

Source
pub trait IntoLogRange {
    type ValueType: LogScalable;

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

Convert a range to a log scale coordinate spec

Required Associated Types§

Source

type ValueType: LogScalable

The type of the value

Required Methods§

Source

fn log_scale(self) -> LogRangeExt<Self::ValueType>

Make the log scale coordinate

Implementations on Foreign Types§

Source§

impl<T: LogScalable> IntoLogRange for Range<T>

Source§

type ValueType = T

Source§

fn log_scale(self) -> LogRangeExt<T>

Implementors§