pub trait ArrayMut {
type Element;
// Required methods
fn get_mut(&mut self, i: usize) -> Option<&mut Self::Element>;
fn pop(&mut self) -> Option<Self::Element>;
fn push(&mut self, e: Self::Element);
}
Expand description
Mutability functions for a value array