Enum apache_avro::Codec
source · [−]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
sourceimpl 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 RefUnwindSafe for Codec
impl Send for Codec
impl Sync for Codec
impl Unpin for Codec
impl UnwindSafe for Codec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more