Trait AsRangedCoord
pub trait AsRangedCoord: Sized {
type CoordDescType: Ranged<ValueType = Self::Value> + From<Self>;
type Value;
}Expand description
The trait for the type that can be converted into a ranged coordinate axis
Required Associated Types§
type CoordDescType: Ranged<ValueType = Self::Value> + From<Self>
type CoordDescType: Ranged<ValueType = Self::Value> + From<Self>
Type to describe a coordinate system
type Value
type Value
Type for values in the given coordinate system
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.