Enumerationgrpc-swift 2.0.0GRPCCore
Value
CompressionAlgorithm.swift:19enum Value
enum Value
import GRPCCore
A gRPC library for Swift written natively in Swift.
struct CompressionAlgorithm
Message compression algorithms.
case none
case deflate
case gzip
static var deflate: Self { get }
The ‘deflate’ compression algorithm.
static var gzip: Self { get }
The ‘gzip’ compression algorithm.
static var none: Self { get }
No compression, sometimes referred to as ‘identity’ compression.
let value: Value
protocol CaseIterable
A type that provides a collection of all of its values.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
protocol RawRepresentable<RawValue>
A type that can be converted to and from an associated raw value.
protocol Sendable
init?(rawValue: UInt8)
var hashValue: Int { get }
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.
func hash(into hasher: inout Hasher)