pub enum Codec {
Null,
Deflate,
}
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.
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 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§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
)