Struct google_appengine1::ResourceRecord[][src]

pub struct ResourceRecord {
    pub rrdata: Option<String>,
    pub type_: Option<String>,
    pub name: Option<String>,
}

A DNS resource record.

This type is not used in any activity, and only used as part of another schema.

Fields

Data for this record. Values vary by record type, as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).

Resource record type. Example: AAAA.

Relative name of the object affected by this record. Only applicable for CNAME records. Example: 'www'.

Trait Implementations

impl Default for ResourceRecord
[src]

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

impl Clone for ResourceRecord
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResourceRecord
[src]

Formats the value using the given formatter. Read more

impl Part for ResourceRecord
[src]

Auto Trait Implementations