envoy-types 0.7.3

Collection of protobuf types and other assets to work with the Envoy Proxy through Rust gRPC services.
Documentation
// This file is @generated by prost-build.
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Brotli {
    /// If true, disables "canny" ring buffer allocation strategy.
    /// Ring buffer is allocated according to window size, despite the real size of the content.
    #[prost(bool, tag = "1")]
    pub disable_ring_buffer_reallocation: bool,
    /// Value for decompressor's next output buffer. If not set, defaults to 4096.
    #[prost(message, optional, tag = "2")]
    pub chunk_size: ::core::option::Option<
        super::super::super::super::super::super::google::protobuf::UInt32Value,
    >,
}
impl ::prost::Name for Brotli {
    const NAME: &'static str = "Brotli";
    const PACKAGE: &'static str = "envoy.extensions.compression.brotli.decompressor.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.compression.brotli.decompressor.v3.Brotli".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.compression.brotli.decompressor.v3.Brotli"
            .into()
    }
}