[][src]Struct google_analytics3::EntityUserLinkPermissions

pub struct EntityUserLinkPermissions {
    pub local: Option<Vec<String>>,
    pub effective: Option<Vec<String>>,
}

Permissions the user has for this entity.

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

Fields

local: Option<Vec<String>>

Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.

effective: Option<Vec<String>>

Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.

Trait Implementations

impl Clone for EntityUserLinkPermissions[src]

impl Debug for EntityUserLinkPermissions[src]

impl Default for EntityUserLinkPermissions[src]

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

impl NestedType for EntityUserLinkPermissions[src]

impl Part for EntityUserLinkPermissions[src]

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