Push a value to the back of the vector, and return a mutable reference to it.
use push_mut::PushMut; fn main() { let mut v = Vec::with_capacity(1); let last = v.push_mut(1); assert_eq!(*last, 1); *last = 2; assert_eq!(*last, 2); }
Vec<T>
PushMut::push_mut