1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[allow(missing_docs)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoSubpattern {
    #[prost(uint64, tag = "1")]
    pub consume: u64,
    #[prost(bool, tag = "2")]
    pub many: bool,
    #[prost(string, tag = "3")]
    pub suffix: ::prost::alloc::string::String,
}
#[allow(missing_docs)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoMatcher {
    #[prost(string, tag = "1")]
    pub pattern: ::prost::alloc::string::String,
    #[prost(bool, tag = "2")]
    pub case_insensitive: bool,
}