Struct google_appengine1::api::ResourceRecord [−][src]
pub struct ResourceRecord {
pub name: Option<String>,
pub rrdata: Option<String>,
pub type_: Option<String>,
}Expand description
A DNS resource record.
This type is not used in any activity, and only used as part of another schema.
Fields
name: Option<String>Relative name of the object affected by this record. Only applicable for CNAME records. Example: ‘www’.
rrdata: Option<String>Data for this record. Values vary by record type, as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).
type_: Option<String>Resource record type. Example: AAAA.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ResourceRecord
impl Send for ResourceRecord
impl Sync for ResourceRecord
impl Unpin for ResourceRecord
impl UnwindSafe for ResourceRecord
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more