Struct google_drive3::User[][src]

pub struct User {
    pub me: Option<bool>,
    pub kind: Option<String>,
    pub display_name: Option<String>,
    pub photo_link: 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

Whether this user is the requesting user.

Identifies what kind of resource this is. Value: the fixed string "drive#user".

A plain text displayable name for this user.

A link to the user's profile photo, if available.

The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.

The user's ID as visible in Permission resources.

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