pub trait PopBack: Collection { // Required method fn pop_back(&mut self) -> Option<Self::Item>; }
Mutable collection where elements can be popped from the back.
Remove the back element of the collection and return it (if any).