pub trait ChunkFillNullValue<T> {
// Required method
fn fill_null_with_values(&self, value: T) -> Result<Self, PolarsError>
where Self: Sized;
}Expand description
Replace None values with a value
Required Methods§
Sourcefn fill_null_with_values(&self, value: T) -> Result<Self, PolarsError>where
Self: Sized,
fn fill_null_with_values(&self, value: T) -> Result<Self, PolarsError>where
Self: Sized,
Replace None values with a give value T.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".