pub enum Compression {
Lz4,
Snappy,
None,
}
Expand description
Enum which represents a type of compression. Only non-startup frame’s body can be compressed.
Variants§
Implementations§
Source§impl Compression
impl Compression
Sourcepub fn encode(&self, bytes: &[u8]) -> Result<Vec<u8>, CompressionError>
pub fn encode(&self, bytes: &[u8]) -> Result<Vec<u8>, CompressionError>
It encodes bytes
basing on type of Compression
..
§Examples
use cassandra_protocol::compression::Compression;
let snappy_compression = Compression::Snappy;
let bytes = String::from("Hello World").into_bytes().to_vec();
let encoded = snappy_compression.encode(&bytes).unwrap();
assert_eq!(snappy_compression.decode(encoded).unwrap(), bytes);
Sourcepub fn is_compressed(self) -> bool
pub fn is_compressed(self) -> bool
Checks if current compression actually compresses data.
Source§impl Compression
impl Compression
Sourcepub fn to_protocol_string(self) -> String
pub fn to_protocol_string(self) -> String
It converts Compression
into String
. If compression is None
then empty string will be
returned
pub fn from_protocol_string(protocol_string: &str) -> Result<Self, String>
Trait Implementations§
Source§impl Clone for Compression
impl Clone for Compression
Source§fn clone(&self) -> Compression
fn clone(&self) -> Compression
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Compression
impl Debug for Compression
Source§impl Display for Compression
impl Display for Compression
Source§impl<'a> From<&'a str> for Compression
impl<'a> From<&'a str> for Compression
Source§fn from(compression_str: &'a str) -> Compression
fn from(compression_str: &'a str) -> Compression
It converts str
into Compression
. If string is neither lz4
nor snappy
then
Compression::None
will be returned
Source§impl From<String> for Compression
impl From<String> for Compression
Source§fn from(compression_string: String) -> Compression
fn from(compression_string: String) -> Compression
It converts String
into Compression
. If string is neither lz4
nor snappy
then
Compression::None
will be returned
Source§impl Hash for Compression
impl Hash for Compression
Source§impl Ord for Compression
impl Ord for Compression
Source§fn cmp(&self, other: &Compression) -> Ordering
fn cmp(&self, other: &Compression) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Compression
impl PartialEq for Compression
Source§impl PartialOrd for Compression
impl PartialOrd for Compression
impl Copy for Compression
impl Eq for Compression
impl StructuralPartialEq for Compression
Auto Trait Implementations§
impl Freeze for Compression
impl RefUnwindSafe for Compression
impl Send for Compression
impl Sync for Compression
impl Unpin for Compression
impl UnwindSafe for Compression
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more