pub struct SparseCompressor;Trait Implementations§
Source§impl Debug for SparseCompressor
impl Debug for SparseCompressor
Source§impl EncodingCompressor for SparseCompressor
impl EncodingCompressor for SparseCompressor
fn id(&self) -> &str
fn cost(&self) -> u8
fn can_compress(&self, array: &Array) -> Option<&dyn EncodingCompressor>
fn compress<'a>( &'a self, array: &Array, like: Option<CompressionTree<'a>>, ctx: SamplingCompressor<'a>, ) -> VortexResult<CompressedArray<'a>>
fn used_encodings(&self) -> HashSet<EncodingRef>
Auto Trait Implementations§
impl Freeze for SparseCompressor
impl RefUnwindSafe for SparseCompressor
impl Send for SparseCompressor
impl Sync for SparseCompressor
impl Unpin for SparseCompressor
impl UnwindSafe for SparseCompressor
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more