pub enum CompressionCodec {
Uncompressed = 0,
Snappy = 1,
Gzip = 2,
Lzo = 3,
Brotli = 4,
Lz4 = 5,
Zstd = 6,
}Expand description
Supported compression algorithms.
Codecs added in 2.4 can be read by readers based on 2.4 and later. Codec support may vary between readers based on the format version and libraries available at runtime. Gzip, Snappy, and LZ4 codecs are widely available, while Zstd and Brotli require additional libraries.
Variants§
Implementations§
Source§impl CompressionCodec
impl CompressionCodec
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<CompressionCodec>
Trait Implementations§
Source§impl Clone for CompressionCodec
impl Clone for CompressionCodec
Source§fn clone(&self) -> CompressionCodec
fn clone(&self) -> CompressionCodec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CompressionCodec
Source§impl Debug for CompressionCodec
impl Debug for CompressionCodec
impl Eq for CompressionCodec
Source§impl Hash for CompressionCodec
impl Hash for CompressionCodec
Source§impl Ord for CompressionCodec
impl Ord for CompressionCodec
Source§fn cmp(&self, other: &CompressionCodec) -> Ordering
fn cmp(&self, other: &CompressionCodec) -> Ordering
1.21.0 (const: unstable) · 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for CompressionCodec
impl PartialEq for CompressionCodec
Source§impl PartialOrd for CompressionCodec
impl PartialOrd for CompressionCodec
impl StructuralPartialEq for CompressionCodec
Auto Trait Implementations§
impl Freeze for CompressionCodec
impl RefUnwindSafe for CompressionCodec
impl Send for CompressionCodec
impl Sync for CompressionCodec
impl Unpin for CompressionCodec
impl UnsafeUnpin for CompressionCodec
impl UnwindSafe for CompressionCodec
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