pub trait VecExt2<T> { // Required method fn pop_first(&mut self) -> Option<T>; }
Pop the first element of the vector, returning None if empty.
None