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§
Sourcetype CoordDescType: Ranged<ValueType = Self::Value> + From<Self>
type CoordDescType: Ranged<ValueType = Self::Value> + From<Self>
Type to describe a 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.