pub trait PopBack { type Output; // Required method fn pop_back(&mut self) -> Option<Self::Output>; }