pub enum Compressor {
UNCOMPRESSED,
SNAPPY,
GZIP,
LZO,
SDT,
PAA,
PLA,
LZ4,
}Expand description
IotDB compressor enum
Variants§
Trait Implementations§
Source§impl Clone for Compressor
impl Clone for Compressor
Source§fn clone(&self) -> Compressor
fn clone(&self) -> Compressor
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 Compressor
impl Debug for Compressor
Source§impl Default for Compressor
impl Default for Compressor
Source§impl From<&str> for Compressor
impl From<&str> for Compressor
Source§impl From<String> for Compressor
impl From<String> for Compressor
Source§impl From<i32> for Compressor
impl From<i32> for Compressor
Source§impl Hash for Compressor
impl Hash for Compressor
Source§impl Into<i32> for Compressor
impl Into<i32> for Compressor
Source§impl Ord for Compressor
impl Ord for Compressor
Source§fn cmp(&self, other: &Compressor) -> Ordering
fn cmp(&self, other: &Compressor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Compressor
impl PartialEq for Compressor
Source§impl PartialOrd for Compressor
impl PartialOrd for Compressor
impl Copy for Compressor
impl Eq for Compressor
impl StructuralPartialEq for Compressor
Auto Trait Implementations§
impl Freeze for Compressor
impl RefUnwindSafe for Compressor
impl Send for Compressor
impl Sync for Compressor
impl Unpin for Compressor
impl UnwindSafe for Compressor
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> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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