pub trait IntoLinspace: AsRangedCoord {
// Provided method
fn step<S: Clone>(
self,
val: S,
) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>>
where Self::Value: Add<S, Output = Self::Value> + PartialOrd + Clone { ... }
}
Expand description
Makes a linspace coordinate from the ranged coordinates.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.