Trait ReshapeArgs
pub trait ReshapeArgs<const D2: usize>: Debug {
// Required method
fn into_shape<const D: usize>(self, source: Shape) -> Shape;
}Expand description
Trait used for reshape arguments.
Required Methods§
fn into_shape<const D: usize>(self, source: Shape) -> Shape
fn into_shape<const D: usize>(self, source: Shape) -> Shape
Converts to a shape.
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.