Struct parquet::compression::LZ4Codec[][src]

pub struct LZ4Codec {}

Codec for LZ4 compression algorithm.

Trait Implementations

impl Codec for LZ4Codec
[src]

Decompresses data stored in slice input_buf and writes output to output_buf. Returns the total number of bytes written. Read more

Compresses data stored in slice input_buf and returns a new vector with the compressed data. TODO: it's better to pass in vec here (e.g., allow reuse), but flate2 api doesn't support this. Read more

Auto Trait Implementations

impl Send for LZ4Codec

impl Sync for LZ4Codec