Struct polars::prelude::Arena [−][src]
pub struct Arena<T> { /* fields omitted */ }
Implementations
Simple Arena implementation Allocates memory and stores item in a Vec. Only deallocates when being dropped itself.
pub fn try_replace_with<F>(
&mut self,
idx: Node,
f: F
) -> Result<(), PolarsError> where
F: FnMut(T) -> Result<T, PolarsError>,
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Arena<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Arena<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more