pub enum ComplexPackingStrategy {
LookAhead(usize),
}Expand description
Strategies applied when performing complex packing on numerical sequences. Complex packing is a method that divides a sequence of numbers into groups and efficiently compresses each group to improve the overall compression ratio of the data.
Variants§
LookAhead(usize)
A strategy that pre-reads a specified number of elements to determine whether to add an element to the current group.
Trait Implementations§
Source§impl Clone for ComplexPackingStrategy
impl Clone for ComplexPackingStrategy
Source§fn clone(&self) -> ComplexPackingStrategy
fn clone(&self) -> ComplexPackingStrategy
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 ComplexPackingStrategy
impl Debug for ComplexPackingStrategy
Source§impl PartialEq for ComplexPackingStrategy
impl PartialEq for ComplexPackingStrategy
impl Eq for ComplexPackingStrategy
impl StructuralPartialEq for ComplexPackingStrategy
Auto Trait Implementations§
impl Freeze for ComplexPackingStrategy
impl RefUnwindSafe for ComplexPackingStrategy
impl Send for ComplexPackingStrategy
impl Sync for ComplexPackingStrategy
impl Unpin for ComplexPackingStrategy
impl UnsafeUnpin for ComplexPackingStrategy
impl UnwindSafe for ComplexPackingStrategy
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