pub trait PushFront<E> { type Output; // Required method fn push_front(self, e: E) -> Self::Output; }