pub trait Transpose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}Expand description
Transposition of nested container types.
pub trait Transpose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}Transposition of nested container types.