Struct hickory_resolver::Hosts
source · pub struct Hosts { /* private fields */ }
Expand description
Configuration for the local hosts file
Implementations§
source§impl Hosts
impl Hosts
sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new configuration from the system hosts file, only works for Windows and Unix-like OSes, will return empty configuration on others
sourcepub fn lookup_static_host(&self, query: &Query) -> Option<Lookup>
pub fn lookup_static_host(&self, query: &Query) -> Option<Lookup>
Look up the addresses for the given host from the system hosts file.
sourcepub fn insert(&mut self, name: Name, record_type: RecordType, lookup: Lookup)
pub fn insert(&mut self, name: Name, record_type: RecordType, lookup: Lookup)
Insert a new Lookup for the associated Name
and RecordType
sourcepub fn read_hosts_conf(self, src: impl Read) -> Result<Self>
pub fn read_hosts_conf(self, src: impl Read) -> Result<Self>
parse configuration from src
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Hosts
impl RefUnwindSafe for Hosts
impl Send for Hosts
impl Sync for Hosts
impl Unpin for Hosts
impl UnwindSafe for Hosts
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