pub trait Coordinate:
Add<Output = Self>
+ CheckedMul
+ Clone
+ Copy
+ Debug
+ Default
+ Display
+ Hash
+ Mul<Output = Self>
+ Ord
+ PartialOrd
+ Sub<Output = Self>
+ TryFrom<usize>
+ TryInto<usize>
+ Unit { }Expand description
Coordinate is the traits required to act as a dimensional index in a Matrix. All the built-in integral types should satisfy these.
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.