#[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
sourceimpl Clone for grpc_compression_level
impl Clone for grpc_compression_level
sourcefn clone(&self) -> grpc_compression_level
fn clone(&self) -> grpc_compression_level
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for grpc_compression_level
impl Debug for grpc_compression_level
sourceimpl Hash for grpc_compression_level
impl Hash for grpc_compression_level
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more