pub struct DnsRecordSet {
pub check_error: Option<Status>,
pub domain_name: Option<String>,
pub records: Option<Vec<DnsRecord>>,
}Expand description
A set of DNS records relevant to the setup and maintenance of a custom domain in Firebase Hosting.
This type is not used in any activity, and only used as part of another schema.
Fields§
§check_error: Option<Status>Output only. An error Hosting services encountered when querying your domain name’s DNS records. Note: Hosting ignores NXDOMAIN errors, as those generally just mean that a domain name hasn’t been set up yet.
domain_name: Option<String>Output only. The domain name the record set pertains to.
records: Option<Vec<DnsRecord>>Output only. Records on the domain.
Trait Implementations§
Source§impl Clone for DnsRecordSet
impl Clone for DnsRecordSet
Source§fn clone(&self) -> DnsRecordSet
fn clone(&self) -> DnsRecordSet
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DnsRecordSet
impl Debug for DnsRecordSet
Source§impl Default for DnsRecordSet
impl Default for DnsRecordSet
Source§fn default() -> DnsRecordSet
fn default() -> DnsRecordSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DnsRecordSet
impl<'de> Deserialize<'de> for DnsRecordSet
Source§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
Source§impl Serialize for DnsRecordSet
impl Serialize for DnsRecordSet
impl Part for DnsRecordSet
Auto Trait Implementations§
impl Freeze for DnsRecordSet
impl RefUnwindSafe for DnsRecordSet
impl Send for DnsRecordSet
impl Sync for DnsRecordSet
impl Unpin for DnsRecordSet
impl UnwindSafe for DnsRecordSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more