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§
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.