Trait polars::chunked_array::object::PolarsObject[][src]

pub trait PolarsObject: Any + Debug + Clone + Send + Sync + Default + Display + Hash + PartialEq<Self> + Eq {
    fn type_name() -> &'static str;
}
Expand description

Values need to implement this so that they can be stored into a Series and DataFrame

Required methods

This should be used as type information. Consider this a part of the type system.

Implementors