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

Trimmed down object safe polars object

Required Methods

Implementors