pub trait PolarsObjectSafe: Any + Debug + Send + Sync + Display {
    // Required methods
    fn type_name(&self) -> &'static str;
    fn as_any(&self) -> &(dyn Any + 'static);
    fn to_boxed(&self) -> Box<dyn PolarsObjectSafe>;
}
Available on crate feature object only.
Expand description

Trimmed down object safe polars object

Required Methods§

source

fn type_name(&self) -> &'static str

source

fn as_any(&self) -> &(dyn Any + 'static)

source

fn to_boxed(&self) -> Box<dyn PolarsObjectSafe>

Implementors§

source§

impl<T> PolarsObjectSafe for Twhere T: PolarsObject,