pub trait IntoLinspace: AsRangedCoord {
    // Provided method
    fn step<S>(
        self,
        val: S,
    ) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>>
       where S: Clone,
             Self::Value: Add<S, Output = Self::Value> + PartialOrd + Clone { ... }
}Expand description
Makes a linspace coordinate from the ranged coordinates.
Provided Methods§
Sourcefn step<S>(self, val: S) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>>
 
fn step<S>(self, val: S) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>>
Set the step value, make a linspace coordinate from the given range. By default the matching method use the exact match
val: The step value- *returns: The newly created linspace
 
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.