pub struct Domain {Show 14 fields
pub authentication_type: String,
pub availability_status: String,
pub is_admin_managed: bool,
pub is_default: bool,
pub is_initial: bool,
pub is_root: bool,
pub is_verified: bool,
pub password_notification_window_in_days: i32,
pub password_validity_period_in_days: i32,
pub supported_services: Vec<String>,
pub state: DomainState,
pub service_configuration_records: Vec<DomainDnsRecord>,
pub verification_dns_records: Vec<DomainDnsRecord>,
pub domain_name_references: Vec<DirectoryObject>,
}
Fields§
§authentication_type: String
§availability_status: String
§is_admin_managed: bool
§is_default: bool
§is_initial: bool
§is_root: bool
§is_verified: bool
§password_notification_window_in_days: i32
§password_validity_period_in_days: i32
§supported_services: Vec<String>
§state: DomainState
§service_configuration_records: Vec<DomainDnsRecord>
§verification_dns_records: Vec<DomainDnsRecord>
§domain_name_references: Vec<DirectoryObject>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Domain
impl<'de> Deserialize<'de> for Domain
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 Eq for Domain
impl StructuralPartialEq for Domain
Auto Trait Implementations§
impl Freeze for Domain
impl RefUnwindSafe for Domain
impl Send for Domain
impl Sync for Domain
impl Unpin for Domain
impl UnwindSafe for Domain
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