pub trait HaveZAndMinusOne<T>: HaveZ<T> {
const MINUS_Z: Self;
const BACKWARD: Self = Self::MINUS_Z;
}Required Associated Constants§
Provided Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".