Struct google_drive3::Change [] [src]

pub struct Change {
    pub kind: Option<String>,
    pub removed: Option<bool>,
    pub file_id: Option<String>,
    pub file: Option<File>,
    pub time: Option<String>,
}

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

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

Whether the file has been removed from the view of the changes list, for example by deletion or lost access.

The ID of the file which has changed.

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

The time of this change (RFC 3339 date-time).

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]