Struct google_dns1::ResourceRecordSet[][src]

pub struct ResourceRecordSet {
    pub rrdatas: Option<Vec<String>>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub ttl: Option<i32>,
    pub type_: Option<String>,
    pub signature_rrdatas: Option<Vec<String>>,
}

A unit of data that will be returned by the DNS servers.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).

Identifies what kind of resource this is. Value: the fixed string "dns#resourceRecordSet".

For example, www.example.com.

Number of seconds that this ResourceRecordSet can be cached by resolvers.

The identifier of a supported record type, for example, A, AAAA, MX, TXT, and so on.

As defined in RFC 4034 (section 3.2).

Trait Implementations

impl Default for ResourceRecordSet
[src]

Returns the "default value" for a type. Read more

impl Clone for ResourceRecordSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResourceRecordSet
[src]

Formats the value using the given formatter. Read more

impl Resource for ResourceRecordSet
[src]

Auto Trait Implementations