#[repr(u8)]pub enum DeltaEncoding {
SparseRows = 0,
LowRank = 1,
FullPatch = 2,
}Expand description
Delta encoding strategy.
Variants§
SparseRows = 0
Sparse row patches (individual vector updates).
LowRank = 1
Low-rank approximation of the delta.
FullPatch = 2
Full cluster patch (complete replacement).
Trait Implementations§
Source§impl Clone for DeltaEncoding
impl Clone for DeltaEncoding
Source§fn clone(&self) -> DeltaEncoding
fn clone(&self) -> DeltaEncoding
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 DeltaEncoding
impl Debug for DeltaEncoding
Source§impl Hash for DeltaEncoding
impl Hash for DeltaEncoding
Source§impl PartialEq for DeltaEncoding
impl PartialEq for DeltaEncoding
Source§impl TryFrom<u8> for DeltaEncoding
impl TryFrom<u8> for DeltaEncoding
impl Copy for DeltaEncoding
impl Eq for DeltaEncoding
impl StructuralPartialEq for DeltaEncoding
Auto Trait Implementations§
impl Freeze for DeltaEncoding
impl RefUnwindSafe for DeltaEncoding
impl Send for DeltaEncoding
impl Sync for DeltaEncoding
impl Unpin for DeltaEncoding
impl UnwindSafe for DeltaEncoding
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