pub enum ResolveHosts {
Always,
Never,
Auto,
}
Expand description
Whether the system hosts file should be respected by the resolver.
Variants§
Always
Always attempt to look up IP addresses from the system hosts file. If the hostname cannot be found, query the DNS.
Never
The DNS will always be queried.
Auto
Use local resolver configurations only when this resolver is not used in a DNS forwarder. This is the default.
Trait Implementations§
Source§impl Clone for ResolveHosts
impl Clone for ResolveHosts
Source§fn clone(&self) -> ResolveHosts
fn clone(&self) -> ResolveHosts
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 ResolveHosts
impl Debug for ResolveHosts
Source§impl Default for ResolveHosts
impl Default for ResolveHosts
Source§fn default() -> ResolveHosts
fn default() -> ResolveHosts
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolveHosts
impl PartialEq for ResolveHosts
impl Copy for ResolveHosts
impl Eq for ResolveHosts
impl StructuralPartialEq for ResolveHosts
Auto Trait Implementations§
impl Freeze for ResolveHosts
impl RefUnwindSafe for ResolveHosts
impl Send for ResolveHosts
impl Sync for ResolveHosts
impl Unpin for ResolveHosts
impl UnwindSafe for ResolveHosts
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