[][src]Struct rdap_client::parser::Nameserver

pub struct Nameserver {
    pub handle: Option<String>,
    pub ldh_name: String,
    pub unicode_name: Option<String>,
    pub ip_addresses: Option<IpAddresses>,
    pub entities: Option<Vec<Entity>>,
    pub status: Option<Vec<Status>>,
    pub remarks: Option<NoticesOrRemarks>,
    pub notices: Option<NoticesOrRemarks>,
    pub links: Option<Vec<Link>>,
    pub object_class_name: String,
}

https://tools.ietf.org/html/rfc7483#section-5.2

Fields

handle: Option<String>ldh_name: Stringunicode_name: Option<String>ip_addresses: Option<IpAddresses>entities: Option<Vec<Entity>>status: Option<Vec<Status>>remarks: Option<NoticesOrRemarks>notices: Option<NoticesOrRemarks>links: Option<Vec<Link>>object_class_name: String

Trait Implementations

impl Debug for Nameserver[src]

impl<'de> Deserialize<'de> for Nameserver[src]

impl Serialize for Nameserver[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.