pub trait AnonymousObjectBuilder {
    // Required methods
    fn append_null(&mut self);
    fn append_value(&mut self, value: &(dyn Any + 'static));
    fn to_series(&mut self) -> Series;

    // Provided method
    fn append_option(&mut self, value: Option<&(dyn Any + 'static)>) { ... }
}
Available on crate feature object only.
Expand description

This trait can be registered, after which that global registration can be used to materialize object types

Required Methods§

source

fn append_null(&mut self)

Append a null value.

source

fn append_value(&mut self, value: &(dyn Any + 'static))

Append a T of ObjectChunked<T> made generic via the Any trait.

source

fn to_series(&mut self) -> Series

Take the current state and materialize as a Series the builder should not be used after that.

Provided Methods§

source

fn append_option(&mut self, value: Option<&(dyn Any + 'static)>)

Implementors§