pub enum HostnameMatch {
Subdomain(Hostname),
Exact(Hostname),
}
Expand description
A matcher for URL hostnames.
Variants§
Subdomain(Hostname)
Matches any valid subdomain of this hostname.
let matcher = HostnameMatch::from_str("*.foo.example").unwrap();
assert!(matcher.matches_str("bar.foo.example"));
assert!(!matcher.matches_str("foo.example"));
assert!(!matcher.matches_str("barfoo.example"));
Exact(Hostname)
An exact match for a hostname.
Implementations§
Trait Implementations§
Source§impl Clone for HostnameMatch
impl Clone for HostnameMatch
Source§fn clone(&self) -> HostnameMatch
fn clone(&self) -> HostnameMatch
Returns a copy of the value. Read more
1.0.0 · 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 HostnameMatch
impl Debug for HostnameMatch
Source§impl<'de> Deserialize<'de> for HostnameMatch
impl<'de> Deserialize<'de> for HostnameMatch
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 Display for HostnameMatch
impl Display for HostnameMatch
Source§impl From<Hostname> for HostnameMatch
impl From<Hostname> for HostnameMatch
Source§impl From<HostnameMatch> for String
impl From<HostnameMatch> for String
Source§fn from(value: HostnameMatch) -> Self
fn from(value: HostnameMatch) -> Self
Converts to this type from the input type.
Source§impl FromStr for HostnameMatch
impl FromStr for HostnameMatch
Source§impl Ord for HostnameMatch
impl Ord for HostnameMatch
Source§fn cmp(&self, other: &HostnameMatch) -> Ordering
fn cmp(&self, other: &HostnameMatch) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HostnameMatch
impl PartialEq for HostnameMatch
Source§impl PartialOrd for HostnameMatch
impl PartialOrd for HostnameMatch
Source§impl Serialize for HostnameMatch
impl Serialize for HostnameMatch
Source§impl TryFrom<String> for HostnameMatch
impl TryFrom<String> for HostnameMatch
impl Eq for HostnameMatch
impl StructuralPartialEq for HostnameMatch
Auto Trait Implementations§
impl Freeze for HostnameMatch
impl RefUnwindSafe for HostnameMatch
impl Send for HostnameMatch
impl Sync for HostnameMatch
impl Unpin for HostnameMatch
impl UnwindSafe for HostnameMatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request