Struct gapi_grpc::google::cloud::domains::v1alpha2::dns_settings::GlueRecord[][src]

pub struct GlueRecord {
    pub host_name: String,
    pub ipv4_addresses: Vec<String>,
    pub ipv6_addresses: Vec<String>,
}

Defines a host on your domain that is a DNS name server for your domain and/or other domains. Glue records are a way of making the IP address of a name server known, even when it serves DNS queries for its parent domain. For example, when ns.example.com is a name server for example.com, the host ns.example.com must have a glue record to break the circular DNS reference.

Fields

host_name: String

Required. Domain name of the host in Punycode format.

ipv4_addresses: Vec<String>

List of IPv4 addresses corresponding to this host in the standard decimal format (e.g. 198.51.100.1). At least one of ipv4_address and ipv6_address must be set.

ipv6_addresses: Vec<String>

List of IPv6 addresses corresponding to this host in the standard hexadecimal format (e.g. 2001:db8::). At least one of ipv4_address and ipv6_address must be set.

Trait Implementations

impl Clone for GlueRecord[src]

impl Debug for GlueRecord[src]

impl Default for GlueRecord[src]

impl Message for GlueRecord[src]

impl PartialEq<GlueRecord> for GlueRecord[src]

impl StructuralPartialEq for GlueRecord[src]

Auto Trait Implementations

impl RefUnwindSafe for GlueRecord

impl Send for GlueRecord

impl Sync for GlueRecord

impl Unpin for GlueRecord

impl UnwindSafe for GlueRecord

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> 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> IntoRequest<T> for T[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]