pub trait ShapeIdx {
type Idx<I: Index>: Unbind<I> + Ord + Eq;
type IdxInc<I: Index>: Unbind<I> + Ord + Eq + From<Idx<Self, I>>;
type MaybeIdx<I: Index>: Unbind<I::Signed> + Ord + Eq;
}Expand description
base trait for Shape
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.