pub trait AnonymousObjectBuilder {
    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.

Required Methods§

Implementors§