#[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 ==
.impl Copy for grpc_compression_level
impl Eq for grpc_compression_level
impl StructuralEq for grpc_compression_level
impl StructuralPartialEq for grpc_compression_level
Auto Trait Implementations§
impl RefUnwindSafe for grpc_compression_level
impl Send for grpc_compression_level
impl Sync for grpc_compression_level
impl Unpin for grpc_compression_level
impl UnwindSafe for grpc_compression_level
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