Enum cdrs::compression::Compression [] [src]

pub enum Compression {
    Lz4,
    Snappy,
    None,
}

Enum which represents a type of compression. Only non-startup frame's body can be compressen.

Variants

lz4 compression

snappy compression

Non compression

Methods

impl Compression
[src]

It encodes bytes basing on type of Compression..

Examples

use cdrs::compression::Compression;

  let snappy_compression = Compression::Snappy;
  let bytes = String::from("Hello World").into_bytes().to_vec();
  let encoded = snappy_compression.encode(bytes.clone()).unwrap();
  assert_eq!(snappy_compression.decode(encoded).unwrap(), bytes);

It decodes bytes basing on type of compression.

Examples

use cdrs::compression::Compression;
    let lz4_compression = Compression::Lz4;
    let bytes = String::from("Hello World").into_bytes().to_vec();
    let encoded = lz4_compression.encode(bytes.clone()).unwrap();
    let len = encoded.len() as u8;
    let mut input = vec![0, 0, 0, len];
    input.extend_from_slice(encoded.as_slice());
    assert_eq!(lz4_compression.decode(input).unwrap(), bytes);

It transforms compression method into a &str.

Trait Implementations

impl Debug for Compression
[src]

Formats the value using the given formatter.

impl PartialEq for Compression
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Compression
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Compression
[src]

impl Eq for Compression
[src]

impl Ord for Compression
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for Compression
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl From<String> for Compression
[src]

It converts String into Compression. If string is neither lz4 nor snappy then Compression::None will be returned

impl<'a> From<&'a str> for Compression
[src]

It converts str into Compression. If string is neither lz4 nor snappy then Compression::None will be returned