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§
Sourcetype ValueType: LogScalable
type ValueType: LogScalable
The type of the value
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".