Enum apache_avro::Codec
source · pub enum Codec {
Null,
Deflate,
Snappy,
Zstandard,
Bzip2,
Xz,
}
Expand description
The compression codec used to compress blocks.
Variants§
Null
The Null
codec simply passes through data uncompressed.
Deflate
The Deflate
codec writes the data block using the deflate algorithm
as specified in RFC 1951, and typically implemented using the zlib library.
Note that this format (unlike the “zlib format” in RFC 1950) does not have a checksum.
Snappy
The Snappy
codec uses Google’s Snappy
compression library. Each compressed block is followed by the 4-byte, big-endian
CRC32 checksum of the uncompressed data in the block.
Zstandard
Bzip2
The BZip2
codec uses BZip2
compression library.
Xz
The Xz
codec uses Xz utils
compression library.
Implementations§
source§impl Codec
impl Codec
sourcepub fn compress(self, stream: &mut Vec<u8>) -> AvroResult<()>
pub fn compress(self, stream: &mut Vec<u8>) -> AvroResult<()>
Compress a stream of bytes in-place.
sourcepub fn decompress(self, stream: &mut Vec<u8>) -> AvroResult<()>
pub fn decompress(self, stream: &mut Vec<u8>) -> AvroResult<()>
Decompress a stream of bytes in-place.
Trait Implementations§
impl Copy for Codec
impl Eq for Codec
impl StructuralPartialEq for Codec
Auto Trait Implementations§
impl Freeze for Codec
impl RefUnwindSafe for Codec
impl Send for Codec
impl Sync for Codec
impl Unpin for Codec
impl UnwindSafe for Codec
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)