pub trait AnonymousObjectBuilder {
// Required methods
fn append_null(&mut self);
fn append_value(&mut self, value: &dyn Any);
fn to_series(&mut self) -> Series;
}Available on crate feature
object only.Expand description
This trait can be registers and then that global registration can be used to materialize object types
Required Methods§
sourcefn append_null(&mut self)
fn append_null(&mut self)
Append a null value.
sourcefn append_value(&mut self, value: &dyn Any)
fn append_value(&mut self, value: &dyn Any)
Append a T of [ObjectChunked<T>] made generic via the Any trait.