[][src]Struct google_prod_tt_sasportal1_alpha1::SasPortalAssignment

pub struct SasPortalAssignment {
    pub role: Option<String>,
    pub members: Option<Vec<String>>,
}

Associates members with a role.

This type is not used in any activity, and only used as part of another schema.

Fields

role: Option<String>

Required. Role that is assigned to members.

members: Option<Vec<String>>

The identities the role is assigned to. It can have the following values:

  • {user_email}: An email address that represents a specific Google account. For example: alice@gmail.com.

  • {group_email}: An email address that represents a Google group. For example, viewers@gmail.com.

Trait Implementations

impl Clone for SasPortalAssignment[src]

impl Debug for SasPortalAssignment[src]

impl Default for SasPortalAssignment[src]

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

impl Part for SasPortalAssignment[src]

impl Serialize for SasPortalAssignment[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, 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