pub trait Transpose {
    type Output;
    // Required method
    fn transpose(&self) -> Self::Output;
}Expand description
The Transpose trait generically establishes an interface for transposing a type
pub trait Transpose {
    type Output;
    // Required method
    fn transpose(&self) -> Self::Output;
}The Transpose trait generically establishes an interface for transposing a type