pub struct DnsChainResponse {
pub query_time: String,
pub resource: String,
pub forward_nodes: HashMap<String, Vec<String>>,
pub reverse_nodes: HashMap<String, Vec<String>>,
pub authoritative_nameservers: Vec<String>,
pub nameservers: Vec<String>,
}Fields§
§query_time: String§resource: String§forward_nodes: HashMap<String, Vec<String>>§reverse_nodes: HashMap<String, Vec<String>>§nameservers: Vec<String>Trait Implementations§
Source§impl Clone for DnsChainResponse
impl Clone for DnsChainResponse
Source§fn clone(&self) -> DnsChainResponse
fn clone(&self) -> DnsChainResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DnsChainResponse
impl Debug for DnsChainResponse
Source§impl Default for DnsChainResponse
impl Default for DnsChainResponse
Source§fn default() -> DnsChainResponse
fn default() -> DnsChainResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DnsChainResponse
impl<'de> Deserialize<'de> for DnsChainResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DnsChainResponse
impl PartialEq for DnsChainResponse
Source§fn eq(&self, other: &DnsChainResponse) -> bool
fn eq(&self, other: &DnsChainResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DnsChainResponse
impl Serialize for DnsChainResponse
impl StructuralPartialEq for DnsChainResponse
Auto Trait Implementations§
impl Freeze for DnsChainResponse
impl RefUnwindSafe for DnsChainResponse
impl Send for DnsChainResponse
impl Sync for DnsChainResponse
impl Unpin for DnsChainResponse
impl UnsafeUnpin for DnsChainResponse
impl UnwindSafe for DnsChainResponse
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