Struct google_drive2::Change [] [src]

pub struct Change {
    pub modification_date: Option<String>,
    pub kind: Option<String>,
    pub file: Option<File>,
    pub deleted: Option<bool>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub file_id: Option<String>,
}

Representation of a change to a file.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The time of this modification.

This is always drive#change.

The updated state of the file. Present if the file has not been deleted.

Whether the file has been deleted.

The ID of the change.

A link back to this change.

The ID of the file associated with this change.

Trait Implementations

impl Debug for Change
[src]

Formats the value using the given formatter.

impl Clone for Change
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Change
[src]

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

impl Resource for Change
[src]

impl ResponseResult for Change
[src]