Struct google_iap1::api::Brand[][src]

pub struct Brand {
    pub application_title: Option<String>,
    pub name: Option<String>,
    pub org_internal_only: Option<bool>,
    pub support_email: Option<String>,
}

OAuth brand data. NOTE: Only contains a portion of the data that describes a brand.

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

application_title: Option<String>

Application name displayed on OAuth consent screen.

name: Option<String>

Output only. Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.

org_internal_only: Option<bool>

Output only. Whether the brand is only intended for usage inside the G Suite organization only.

support_email: Option<String>

Support email displayed on the OAuth consent screen.

Trait Implementations

impl Clone for Brand[src]

impl Debug for Brand[src]

impl Default for Brand[src]

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

impl RequestValue for Brand[src]

impl ResponseResult for Brand[src]

impl Serialize for Brand[src]

Auto Trait Implementations

impl RefUnwindSafe for Brand[src]

impl Send for Brand[src]

impl Sync for Brand[src]

impl Unpin for Brand[src]

impl UnwindSafe for Brand[src]

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, 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.