pub struct ColumnPreprocess {
pub bin_type: BinType,
pub min_v: f32,
pub max_v: f32,
pub values: HashMap<ValueKey, u64>,
pub bins: HashMap<ValueKey, u64>,
pub bin_labels: Vec<String>,
pub numerical_bins: Vec<NumericalBin>,
}Fields§
§bin_type: BinType§min_v: f32§max_v: f32§values: HashMap<ValueKey, u64>§bins: HashMap<ValueKey, u64>§bin_labels: Vec<String>§numerical_bins: Vec<NumericalBin>Trait Implementations§
Source§impl Clone for ColumnPreprocess
impl Clone for ColumnPreprocess
Source§fn clone(&self) -> ColumnPreprocess
fn clone(&self) -> ColumnPreprocess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ColumnPreprocess
impl RefUnwindSafe for ColumnPreprocess
impl Send for ColumnPreprocess
impl Sync for ColumnPreprocess
impl Unpin for ColumnPreprocess
impl UnsafeUnpin for ColumnPreprocess
impl UnwindSafe for ColumnPreprocess
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