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
fn try_push(&mut self, item: A) -> Result<(), ArrowError>
fn try_push(&mut self, item: A) -> Result<(), ArrowError>
Tries to push a new element.