pub enum Preprocessor {
Noop,
Lorenzo1D {
dtype: LorenzoDtype,
},
QuantizeErrorBound {
dtype: QuantizeDType,
kind: ErrorKind,
error_bound: f64,
threshold: Option<f64>,
decorrelation: Decorrelation,
},
}Expand description
LC preprocessor
Variants§
Trait Implementations§
Source§impl Clone for Preprocessor
impl Clone for Preprocessor
Source§fn clone(&self) -> Preprocessor
fn clone(&self) -> Preprocessor
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 Preprocessor
impl Debug for Preprocessor
Source§impl PartialEq for Preprocessor
impl PartialEq for Preprocessor
impl StructuralPartialEq for Preprocessor
Auto Trait Implementations§
impl Freeze for Preprocessor
impl RefUnwindSafe for Preprocessor
impl Send for Preprocessor
impl Sync for Preprocessor
impl Unpin for Preprocessor
impl UnsafeUnpin for Preprocessor
impl UnwindSafe for Preprocessor
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