[][src]Struct rusoto_route53domains::Nameserver

pub struct Nameserver {
    pub glue_ips: Option<Vec<String>>,
    pub name: String,
}

Nameserver includes the following elements.

Fields

glue_ips: Option<Vec<String>>

Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com.

Constraints: The list can contain only one IPv4 and one IPv6 address.

name: String

The fully qualified host name of the name server.

Constraint: Maximum 255 characters

Trait Implementations

impl Clone for Nameserver[src]

impl Debug for Nameserver[src]

impl Default for Nameserver[src]

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

impl PartialEq<Nameserver> for Nameserver[src]

impl Serialize for Nameserver[src]

impl StructuralPartialEq 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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.