pub enum SimplePackingStrategy {
Decimal(i16),
}Expand description
Strategies applied when performing simple packing on numerical sequences. Simple packing is a method for discretizing continuous numerical values as integers, and various approaches can be taken during this process.
Variants§
Decimal(i16)
A strategy specifying how many decimal places to consider valid for the numbers. This strategy is effective for various types of data, such as observation data obtained from specific observation instruments, where precision is clearly defined.
Trait Implementations§
Source§impl Clone for SimplePackingStrategy
impl Clone for SimplePackingStrategy
Source§fn clone(&self) -> SimplePackingStrategy
fn clone(&self) -> SimplePackingStrategy
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 SimplePackingStrategy
impl Debug for SimplePackingStrategy
Source§impl PartialEq for SimplePackingStrategy
impl PartialEq for SimplePackingStrategy
impl Eq for SimplePackingStrategy
impl StructuralPartialEq for SimplePackingStrategy
Auto Trait Implementations§
impl Freeze for SimplePackingStrategy
impl RefUnwindSafe for SimplePackingStrategy
impl Send for SimplePackingStrategy
impl Sync for SimplePackingStrategy
impl Unpin for SimplePackingStrategy
impl UnsafeUnpin for SimplePackingStrategy
impl UnwindSafe for SimplePackingStrategy
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