pub enum Host<S = String> {
Domain(S),
Ipv4(Ipv4Addr),
Ipv6(Ipv6Addr),
}
Expand description
The host name of an URL.
Variants§
Domain(S)
A DNS domain name, as ‘.’ dot-separated labels. Non-ASCII labels are encoded in punycode per IDNA if this is the host of a special URL, or percent encoded for non-special URLs. Hosts for non-special URLs are also called opaque hosts.
Ipv4(Ipv4Addr)
An IPv4 address.
Url::host_str
returns the serialization of this address,
as four decimal integers separated by .
dots.
Ipv6(Ipv6Addr)
An IPv6 address.
Url::host_str
returns the serialization of that address between [
and ]
brackets,
in the format per RFC 5952 A Recommendation
for IPv6 Address Text Representation:
lowercase hexadecimal with maximal ::
compression.
Implementations§
Trait Implementations§
source§impl<S> Ord for Host<S>where
S: Ord,
impl<S> Ord for Host<S>where S: Ord,
source§impl<S, T> PartialEq<Host<T>> for Host<S>where
S: PartialEq<T>,
impl<S, T> PartialEq<Host<T>> for Host<S>where S: PartialEq<T>,
source§impl<S> PartialOrd<Host<S>> for Host<S>where
S: PartialOrd<S>,
impl<S> PartialOrd<Host<S>> for Host<S>where S: PartialOrd<S>,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<S> Eq for Host<S>where S: Eq,
impl<S> StructuralEq for Host<S>
Auto Trait Implementations§
impl<S> RefUnwindSafe for Host<S>where S: RefUnwindSafe,
impl<S> Send for Host<S>where S: Send,
impl<S> Sync for Host<S>where S: Sync,
impl<S> Unpin for Host<S>where S: Unpin,
impl<S> UnwindSafe for Host<S>where S: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.