Struct google_dns1::ResourceRecordSet [] [src]

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

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".

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

For example, www.example.com.

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

Trait Implementations

impl Default for ResourceRecordSet
[src]

[src]

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

impl Clone for ResourceRecordSet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ResourceRecordSet
[src]

[src]

Formats the value using the given formatter.

impl Resource for ResourceRecordSet
[src]