pub struct HeaderMatch {
pub name: String,
pub pattern: String,
}Expand description
A leaf of a HeaderFilter: a regular expression tested against the value
of a named Kafka header.
JSON schema
{
"description": "A leaf of a [`HeaderFilter`]: a regular expression tested against the value\nof a named Kafka header.",
"type": "object",
"required": [
"name",
"pattern"
],
"properties": {
"name": {
"description": "Name of the header to test, matched exactly against the header key.",
"type": "string"
},
"pattern": {
"description": "Regular expression ([Rust `regex` crate\nsyntax](https://docs.rs/regex/latest/regex/#syntax)) tested against the\nheader value.\n\nThe value is matched as raw bytes, so non-UTF-8 values and byte patterns\nwork. The pattern must match the *entire* value: it is anchored\nautomatically, so `^`/`$` are unnecessary (though harmless). A header\npresent with a null value is matched as an empty byte sequence; a header\nthat appears more than once matches if any of its values match.",
"type": "string"
}
}
}Fields§
§name: StringName of the header to test, matched exactly against the header key.
pattern: StringRegular expression (Rust regex crate
syntax) tested against the
header value.
The value is matched as raw bytes, so non-UTF-8 values and byte patterns
work. The pattern must match the entire value: it is anchored
automatically, so ^/$ are unnecessary (though harmless). A header
present with a null value is matched as an empty byte sequence; a header
that appears more than once matches if any of its values match.
Implementations§
Source§impl HeaderMatch
impl HeaderMatch
pub fn builder() -> HeaderMatch
Trait Implementations§
Source§impl Clone for HeaderMatch
impl Clone for HeaderMatch
Source§fn clone(&self) -> HeaderMatch
fn clone(&self) -> HeaderMatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HeaderMatch
impl Debug for HeaderMatch
Source§impl<'de> Deserialize<'de> for HeaderMatch
impl<'de> Deserialize<'de> for HeaderMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&HeaderMatch> for HeaderMatch
impl From<&HeaderMatch> for HeaderMatch
Source§fn from(value: &HeaderMatch) -> Self
fn from(value: &HeaderMatch) -> Self
Converts to this type from the input type.
Source§impl From<HeaderMatch> for HeaderFilter
impl From<HeaderMatch> for HeaderFilter
Source§fn from(value: HeaderMatch) -> Self
fn from(value: HeaderMatch) -> Self
Converts to this type from the input type.
Source§impl From<HeaderMatch> for HeaderMatch
impl From<HeaderMatch> for HeaderMatch
Source§fn from(value: HeaderMatch) -> Self
fn from(value: HeaderMatch) -> Self
Converts to this type from the input type.
Source§impl Serialize for HeaderMatch
impl Serialize for HeaderMatch
Source§impl TryFrom<HeaderMatch> for HeaderMatch
impl TryFrom<HeaderMatch> for HeaderMatch
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: HeaderMatch) -> Result<Self, ConversionError>
fn try_from(value: HeaderMatch) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for HeaderMatch
impl RefUnwindSafe for HeaderMatch
impl Send for HeaderMatch
impl Sync for HeaderMatch
impl Unpin for HeaderMatch
impl UnsafeUnpin for HeaderMatch
impl UnwindSafe for HeaderMatch
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more