pub enum Codec {
Null,
Deflate(DeflateSettings),
Zstandard(ZstandardSettings),
}Expand description
The compression codec used to compress blocks.
Variants§
Null
The Null codec simply passes through data uncompressed.
Deflate(DeflateSettings)
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.
Zstandard(ZstandardSettings)
The Zstandard codec uses Facebook’s Zstandard
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.