pub struct DnsZone {Show 16 fields
pub id: Option<String>,
pub name: Option<String>,
pub errors: Option<Vec<String>>,
pub supported_record_types: Option<Vec<String>>,
pub user_id: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub records: Option<Vec<DnsRecord>>,
pub dns_servers: Option<Vec<String>>,
pub account_id: Option<String>,
pub site_id: Option<String>,
pub account_slug: Option<String>,
pub account_name: Option<String>,
pub domain: Option<String>,
pub ipv6_enabled: Option<bool>,
pub dedicated: Option<bool>,
}
Fields§
§id: Option<String>
§name: Option<String>
§errors: Option<Vec<String>>
§supported_record_types: Option<Vec<String>>
§user_id: Option<String>
§created_at: Option<String>
§updated_at: Option<String>
§records: Option<Vec<DnsRecord>>
§dns_servers: Option<Vec<String>>
§account_id: Option<String>
§site_id: Option<String>
§account_slug: Option<String>
§account_name: Option<String>
§domain: Option<String>
§ipv6_enabled: Option<bool>
§dedicated: Option<bool>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DnsZone
impl<'de> Deserialize<'de> for DnsZone
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
impl StructuralPartialEq for DnsZone
Auto Trait Implementations§
impl Freeze for DnsZone
impl RefUnwindSafe for DnsZone
impl Send for DnsZone
impl Sync for DnsZone
impl Unpin for DnsZone
impl UnwindSafe for DnsZone
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