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

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

Required methods

Tries to push a new element.

Implementors