pub trait Container {
    type T;
    fn as_mut(&mut self) -> &mut [Self::T];
}
Expand description

Abstract over containers that produce &mut [T]

Associated Types

Required methods

Implementations on Foreign Types

Implementors