Struct google_appsactivity1::User [] [src]

pub struct User {
    pub photo: Option<Photo>,
    pub permission_id: Option<String>,
    pub is_deleted: Option<bool>,
    pub is_me: Option<bool>,
    pub name: Option<String>,
}

A representation of a user.

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

Fields

The profile photo of the user. Not present if the user has no profile photo.

The permission ID associated with this user. Equivalent to the Drive API's permission ID for this user, returned as part of the Drive Permissions resource.

A boolean which indicates whether the specified User was deleted. If true, name, photo and permission_id will be omitted.

Whether the user is the authenticated user.

The displayable name of the user.

Trait Implementations

impl Default for User
[src]

[src]

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

impl Clone for User
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for User
[src]

[src]

Formats the value using the given formatter.

impl Part for User
[src]