pub enum ColumnErrorStrategy {
StopOnError,
SkipOnError,
Fallback,
ReplaceWithZeros,
ReplaceWithNaN,
}Expand description
Strategy for handling errors during column transformations
Variants§
StopOnError
Stop on first error
SkipOnError
Skip failed transformers and continue with others
Fallback
Use fallback transformer for failed columns
ReplaceWithZeros
Replace failed columns with zeros
ReplaceWithNaN
Replace failed columns with NaN values
Trait Implementations§
Source§impl Clone for ColumnErrorStrategy
impl Clone for ColumnErrorStrategy
Source§fn clone(&self) -> ColumnErrorStrategy
fn clone(&self) -> ColumnErrorStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ColumnErrorStrategy
impl Debug for ColumnErrorStrategy
Source§impl Default for ColumnErrorStrategy
impl Default for ColumnErrorStrategy
Source§impl PartialEq for ColumnErrorStrategy
impl PartialEq for ColumnErrorStrategy
impl Copy for ColumnErrorStrategy
impl StructuralPartialEq for ColumnErrorStrategy
Auto Trait Implementations§
impl Freeze for ColumnErrorStrategy
impl RefUnwindSafe for ColumnErrorStrategy
impl Send for ColumnErrorStrategy
impl Sync for ColumnErrorStrategy
impl Unpin for ColumnErrorStrategy
impl UnwindSafe for ColumnErrorStrategy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more