pub trait TryPush<A> {
    fn try_push(&mut self, item: A) -> Result<()>;
}
Expand description

A trait describing the ability of a struct to receive new items.

Required Methods

Tries to push a new element.

Implementors