pub enum ZoneResult {
Answer {
rrs: Vec<ResourceRecord>,
},
CNAME {
cname: DomainName,
rr: ResourceRecord,
},
Delegation {
ns_rrs: Vec<ResourceRecord>,
},
NameError,
}
Expand description
The result of looking up a name in a zone.
Variants§
Trait Implementations§
Source§impl Clone for ZoneResult
impl Clone for ZoneResult
Source§fn clone(&self) -> ZoneResult
fn clone(&self) -> ZoneResult
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 ZoneResult
impl Debug for ZoneResult
Source§impl PartialEq for ZoneResult
impl PartialEq for ZoneResult
impl Eq for ZoneResult
impl StructuralPartialEq for ZoneResult
Auto Trait Implementations§
impl !Freeze for ZoneResult
impl RefUnwindSafe for ZoneResult
impl Send for ZoneResult
impl Sync for ZoneResult
impl Unpin for ZoneResult
impl UnwindSafe for ZoneResult
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