pub enum TSCompressionType {
UNCOMPRESSED = 0,
SNAPPY = 1,
GZIP = 2,
LZO = 3,
SDT = 4,
PAA = 5,
PLA = 6,
LZ4 = 7,
}
Variants§
Trait Implementations§
Source§impl Clone for TSCompressionType
impl Clone for TSCompressionType
Source§fn clone(&self) -> TSCompressionType
fn clone(&self) -> TSCompressionType
Returns a copy 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 TSCompressionType
impl Debug for TSCompressionType
Source§impl From<TSCompressionType> for i32
impl From<TSCompressionType> for i32
Source§fn from(t: TSCompressionType) -> i32
fn from(t: TSCompressionType) -> i32
Converts to this type from the input type.
Source§impl Hash for TSCompressionType
impl Hash for TSCompressionType
Source§impl Ord for TSCompressionType
impl Ord for TSCompressionType
Source§fn cmp(&self, other: &TSCompressionType) -> Ordering
fn cmp(&self, other: &TSCompressionType) -> 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 TSCompressionType
impl PartialEq for TSCompressionType
Source§impl PartialOrd for TSCompressionType
impl PartialOrd for TSCompressionType
impl Eq for TSCompressionType
impl StructuralPartialEq for TSCompressionType
Auto Trait Implementations§
impl Freeze for TSCompressionType
impl RefUnwindSafe for TSCompressionType
impl Send for TSCompressionType
impl Sync for TSCompressionType
impl Unpin for TSCompressionType
impl UnwindSafe for TSCompressionType
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