pub trait AssertSameNumel<Dst: ConstShape>: ConstShape {
    const TYPE_CHECK: ();

    // Provided method
    fn assert_same_numel() { ... }
}
Expand description

Marker for shapes that have the same number of elements as Dst

Required Associated Constants§

Provided Methods§

Implementors§

source§

impl<Src: ConstShape, Dst: ConstShape> AssertSameNumel<Dst> for Src