pub trait IntoShape {
type IntoShape: Shape;
// Required method
fn into_shape(self) -> Self::IntoShape;
}Expand description
Conversion trait into an array shape.
Required Associated Types§
Required Methods§
Sourcefn into_shape(self) -> Self::IntoShape
fn into_shape(self) -> Self::IntoShape
Creates array shape from a value.