pub(crate) struct WildcardDnsNameRef<'a>(&'a [u8]);
Expand description
A reference to a DNS Name presented by a server that may include a wildcard.
A WildcardDnsNameRef
is guaranteed to be syntactically valid. The validity rules
are specified in RFC 5280 Section 7.2, except that underscores are also
allowed.
Additionally, while [RFC6125 Section 4.1] says that a wildcard label may be of the form
<x>*<y>.<DNSID>
, where <x>
and/or <y>
may be empty, we follow a stricter policy common
to most validation libraries (e.g. NSS) and only accept wildcard labels that are exactly *
.
Tuple Fields§
§0: &'a [u8]
Implementations§
Source§impl<'a> WildcardDnsNameRef<'a>
impl<'a> WildcardDnsNameRef<'a>
Sourcepub(crate) fn try_from_ascii(
dns_name: &'a [u8],
) -> Result<Self, InvalidDnsNameError>
pub(crate) fn try_from_ascii( dns_name: &'a [u8], ) -> Result<Self, InvalidDnsNameError>
Constructs a WildcardDnsNameRef
from the given input if the input is a
syntactically-valid DNS name.
Trait Implementations§
Source§impl<'a> Clone for WildcardDnsNameRef<'a>
impl<'a> Clone for WildcardDnsNameRef<'a>
Source§fn clone(&self) -> WildcardDnsNameRef<'a>
fn clone(&self) -> WildcardDnsNameRef<'a>
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 WildcardDnsNameRef<'_>
impl Debug for WildcardDnsNameRef<'_>
Source§impl<'a> Hash for WildcardDnsNameRef<'a>
impl<'a> Hash for WildcardDnsNameRef<'a>
Source§impl<'a> PartialEq for WildcardDnsNameRef<'a>
impl<'a> PartialEq for WildcardDnsNameRef<'a>
impl<'a> Copy for WildcardDnsNameRef<'a>
impl<'a> Eq for WildcardDnsNameRef<'a>
impl<'a> StructuralPartialEq for WildcardDnsNameRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for WildcardDnsNameRef<'a>
impl<'a> RefUnwindSafe for WildcardDnsNameRef<'a>
impl<'a> Send for WildcardDnsNameRef<'a>
impl<'a> Sync for WildcardDnsNameRef<'a>
impl<'a> Unpin for WildcardDnsNameRef<'a>
impl<'a> UnwindSafe for WildcardDnsNameRef<'a>
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