[][src]Struct gsuite_api::Organization

pub struct Organization {
    pub cost_center: String,
    pub custom_type: String,
    pub department: String,
    pub description: String,
    pub domain: String,
    pub full_time_equivalent: u64,
    pub location: String,
    pub name: String,
    pub primary: bool,
    pub symbol: String,
    pub title: String,
    pub typev: String,
}

An organization

Fields

cost_center: Stringcustom_type: String

If the value of type is custom, this property contains the custom type string.

department: Stringdescription: Stringdomain: Stringfull_time_equivalent: u64location: Stringname: Stringprimary: boolsymbol: Stringtitle: Stringtypev: String

Trait Implementations

impl Clone for Organization[src]

impl Debug for Organization[src]

impl Default for Organization[src]

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

impl Serialize for Organization[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument 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<V, T> VZip<V> for T where
    V: MultiLane<T>,