[][src]Struct graph_rs_types::entitytypes::Domain

pub struct Domain {
    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: Stringavailability_status: Stringis_admin_managed: boolis_default: boolis_initial: boolis_root: boolis_verified: boolpassword_notification_window_in_days: i32password_validity_period_in_days: i32supported_services: Vec<String>state: DomainStateservice_configuration_records: Vec<DomainDnsRecord>verification_dns_records: Vec<DomainDnsRecord>domain_name_references: Vec<DirectoryObject>

Trait Implementations

impl Eq for Domain[src]

impl Clone for Domain[src]

impl PartialEq<Domain> for Domain[src]

impl Debug for Domain[src]

impl Serialize for Domain[src]

impl<'de> Deserialize<'de> for Domain[src]

Auto Trait Implementations

impl Send for Domain

impl Unpin for Domain

impl Sync for Domain

impl RefUnwindSafe for Domain

impl UnwindSafe for Domain

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]