pub trait Push<T>: Collection { type Output; // Required method fn push(&mut self, value: T) -> Self::Output; }
Push an value and return it’s index.
std