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.
/// Metadata matcher for metadata from http matching input data.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Metadata {
    /// The Metadata is matched if the value retrieved by metadata matching input is matched to this value.
    #[prost(message, optional, tag = "1")]
    pub value: ::core::option::Option<
        super::super::super::super::super::r#type::matcher::v3::ValueMatcher,
    >,
    /// If true, the match result will be inverted.
    #[prost(bool, tag = "4")]
    pub invert: bool,
}
impl ::prost::Name for Metadata {
    const NAME: &'static str = "Metadata";
    const PACKAGE: &'static str = "envoy.extensions.matching.input_matchers.metadata.v3";
    fn full_name() -> ::prost::alloc::string::String {
        "envoy.extensions.matching.input_matchers.metadata.v3.Metadata".into()
    }
    fn type_url() -> ::prost::alloc::string::String {
        "type.googleapis.com/envoy.extensions.matching.input_matchers.metadata.v3.Metadata"
            .into()
    }
}