[][src]Struct google_admin1_directory::Domains

pub struct Domains {
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub verified: Option<bool>,
    pub domain_name: Option<String>,
    pub domain_aliases: Option<Vec<DomainAlias>>,
    pub is_primary: Option<bool>,
    pub creation_time: Option<String>,
}

JSON template for Domain object in Directory API.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

kind: Option<String>

Kind of resource this is.

etag: Option<String>

ETag of the resource.

verified: Option<bool>

Indicates the verification state of a domain. (Read-only).

domain_name: Option<String>

The domain name of the customer.

domain_aliases: Option<Vec<DomainAlias>>

List of domain alias objects. (Read-only)

is_primary: Option<bool>

Indicates if the domain is a primary domain (Read-only).

creation_time: Option<String>

Creation time of the domain. (Read-only).

Trait Implementations

impl Clone for Domains[src]

impl Debug for Domains[src]

impl Default for Domains[src]

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

impl RequestValue for Domains[src]

impl ResponseResult for Domains[src]

impl Serialize for Domains[src]

Auto Trait Implementations

impl RefUnwindSafe for Domains

impl Send for Domains

impl Sync for Domains

impl Unpin for Domains

impl UnwindSafe for Domains

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any