Struct rusoto_workdocs::User[][src]

pub struct User {
    pub created_timestamp: Option<f64>,
    pub email_address: Option<String>,
    pub given_name: Option<String>,
    pub id: Option<String>,
    pub locale: Option<String>,
    pub modified_timestamp: Option<f64>,
    pub organization_id: Option<String>,
    pub recycle_bin_folder_id: Option<String>,
    pub root_folder_id: Option<String>,
    pub status: Option<String>,
    pub storage: Option<UserStorageMetadata>,
    pub surname: Option<String>,
    pub time_zone_id: Option<String>,
    pub type_: Option<String>,
    pub username: Option<String>,
}

Describes a user.

Fields

The time when the user was created.

The email address of the user.

The given name of the user.

The ID of the user.

The locale of the user.

The time when the user was modified.

The ID of the organization.

The ID of the recycle bin folder.

The ID of the root folder.

The status of the user.

The storage for the user.

The surname of the user.

The time zone ID of the user.

The type of user.

The login name of the user.

Trait Implementations

impl Default for User
[src]

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

impl Debug for User
[src]

Formats the value using the given formatter. Read more

impl Clone for User
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for User
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for User

impl Sync for User