Trait arrow2::array::TryPush

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

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

Required Methods§

source

fn try_push(&mut self, item: A) -> Result<()>

Tries to push a new element.

Implementors§