Struct google_analytics3::EntityUserLinkPermissions[][src]

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

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

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 Default for EntityUserLinkPermissions
[src]

Returns the "default value" for a type. Read more

impl Clone for EntityUserLinkPermissions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EntityUserLinkPermissions
[src]

Formats the value using the given formatter. Read more

impl NestedType for EntityUserLinkPermissions
[src]

impl Part for EntityUserLinkPermissions
[src]

Auto Trait Implementations