pub trait TryPush<A> {
// Required method
fn try_push(&mut self, item: A) -> PolarsResult<()>;
}
Expand description
A trait describing the ability of a struct to receive new items.
Required Methods§
Sourcefn try_push(&mut self, item: A) -> PolarsResult<()>
fn try_push(&mut self, item: A) -> PolarsResult<()>
Tries to push a new element.