Enum grpcio::CompressionLevel[][src]

#[repr(C)]
pub enum CompressionLevel { None, Low, Med, High, }

Compression levels supported by gRPC.

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.

Based on grpc_compression_level.

Variants

No compression.

Low compression.

Medium compression.

High compression.

Auto Trait Implementations