Struct rusoto_workdocs::FolderMetadata[][src]

pub struct FolderMetadata {
    pub created_timestamp: Option<f64>,
    pub creator_id: Option<String>,
    pub id: Option<String>,
    pub labels: Option<Vec<String>>,
    pub latest_version_size: Option<i64>,
    pub modified_timestamp: Option<f64>,
    pub name: Option<String>,
    pub parent_folder_id: Option<String>,
    pub resource_state: Option<String>,
    pub signature: Option<String>,
    pub size: Option<i64>,
}

Describes a folder.

Fields

The time when the folder was created.

The ID of the creator.

The ID of the folder.

List of labels on the folder.

The size of the latest version of the folder metadata.

The time when the folder was updated.

The name of the folder.

The ID of the parent folder.

The resource state of the folder.

The unique identifier created from the subfolders and documents of the folder.

The size of the folder metadata.

Trait Implementations

impl Default for FolderMetadata
[src]

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

impl Debug for FolderMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for FolderMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FolderMetadata
[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