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

pub enum Compression {
    Lz4,
    Snappy,
    None,
}

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

Variants

Lz4

lz4 compression

Snappy

snappy compression

None

Non compression

Methods

impl Compression[src]

pub fn encode(&self, bytes: Vec<u8>) -> Result<Vec<u8>, CompressionError>[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);

pub fn decode(&self, bytes: Vec<u8>) -> Result<Vec<u8>, CompressionError>[src]

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);

pub fn as_str(&self) -> Option<&'static str>[src]

It transforms compression method into a &str.

Trait Implementations

impl From<String> for Compression[src]

fn from(compression_string: String) -> 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]

fn from(compression_str: &'a str) -> Compression[src]

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

impl Ord for Compression[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialOrd<Compression> for Compression[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

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

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

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

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

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

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

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

impl PartialEq<Compression> for Compression[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Clone for Compression[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for Compression[src]

impl Copy for Compression[src]

impl Debug for Compression[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]