Enum polars_core::chunked_array::ops::FillNullStrategy
source · [−]pub enum FillNullStrategy {
Backward,
Forward,
Mean,
Min,
Max,
Zero,
One,
MaxBound,
MinBound,
}
Variants
Backward
previous value in array
Forward
next value in array
Mean
mean value of array
Min
minimal value in array
Max
maximum value in array
Zero
replace with the value zero
One
replace with the value one
MaxBound
replace with the maximum value of that data type
MinBound
replace with the minimal value of that data type
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FillNullStrategy
impl Send for FillNullStrategy
impl Sync for FillNullStrategy
impl Unpin for FillNullStrategy
impl UnwindSafe for FillNullStrategy
Blanket Implementations
Mutably borrows from an owned value. Read more