pub trait ListBuilderTrait {
    fn append_series(&mut self, s: &Series);
    fn append_null(&mut self);
    fn finish(&mut self) -> ListChunked;

    fn append_opt_series(&mut self, opt_s: Option<&Series>) { ... }
}

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§