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 duplicate 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