pub trait Flatten {
type Output;
// Required method
fn flatten(self) -> Self::Output;
}Expand description
The operation that flattens nested container types.
pub trait Flatten {
type Output;
// Required method
fn flatten(self) -> Self::Output;
}The operation that flattens nested container types.