#[repr(u32)]
pub enum grpc_compression_level {
GRPC_COMPRESS_LEVEL_NONE,
GRPC_COMPRESS_LEVEL_LOW,
GRPC_COMPRESS_LEVEL_MED,
GRPC_COMPRESS_LEVEL_HIGH,
GRPC_COMPRESS_LEVEL_COUNT,
}
Expand description
Compression levels allow a party with knowledge of its peer’s accepted encodings to request compression in an abstract way. The level-algorithm mapping is performed internally and depends on the peer’s supported compression algorithms.
Variants§
GRPC_COMPRESS_LEVEL_NONE
GRPC_COMPRESS_LEVEL_LOW
GRPC_COMPRESS_LEVEL_MED
GRPC_COMPRESS_LEVEL_HIGH
GRPC_COMPRESS_LEVEL_COUNT
Trait Implementations§
source§impl Clone for grpc_compression_level
impl Clone for grpc_compression_level
source§fn clone(&self) -> grpc_compression_level
fn clone(&self) -> grpc_compression_level
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 grpc_compression_level
impl Debug for grpc_compression_level
source§impl Hash for grpc_compression_level
impl Hash for grpc_compression_level
source§impl PartialEq<grpc_compression_level> for grpc_compression_level
impl PartialEq<grpc_compression_level> for grpc_compression_level
source§fn eq(&self, other: &grpc_compression_level) -> bool
fn eq(&self, other: &grpc_compression_level) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.