pub trait IntoDimension {
type Dim: Dimension;
// Required method
fn into_dimension(self) -> Self::Dim;
}Expand description
Argument conversion a dimension.
Required Associated Types§
Required Methods§
Sourcefn into_dimension(self) -> Self::Dim
fn into_dimension(self) -> Self::Dim
Convert into a type that implements Dimension.