pub trait SameShapeVectorAllocator<R1, R2>:
Allocator<R1>
+ Allocator<<ShapeConstraint as SameNumberOfRows<R1, R2>>::Representative>
+ SameShapeAllocator<R1, Const<1>, R2, Const<1>>{ }Expand description
Restricts the given number of rows to be equal.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".