Struct google_drive2::User[][src]

pub struct User {
    pub picture: Option<UserPicture>,
    pub kind: Option<String>,
    pub is_authenticated_user: Option<bool>,
    pub display_name: Option<String>,
    pub email_address: Option<String>,
    pub permission_id: Option<String>,
}

Information about a Drive user.

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

Fields

The user's profile picture.

This is always drive#user.

Whether this user is the same as the authenticated user for whom the request was made.

A plain text displayable name for this user.

The email address of the user.

The user's ID as visible in the permissions collection.

Trait Implementations

impl Default for User
[src]

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

impl Clone for User
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for User
[src]

Formats the value using the given formatter. Read more

impl Part for User
[src]

Auto Trait Implementations

impl Send for User

impl Sync for User