pub struct Change {
    pub change_type: Option<String>,
    pub drive: Option<Drive>,
    pub drive_id: Option<String>,
    pub file: Option<File>,
    pub file_id: Option<String>,
    pub kind: Option<String>,
    pub removed: Option<bool>,
    pub team_drive: Option<TeamDrive>,
    pub team_drive_id: Option<String>,
    pub time: Option<DateTime<Utc>>,
    pub type_: Option<String>,
}
Expand description

A change to a file or shared drive.

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

change_type: Option<String>

The type of the change. Possible values are file and drive.

drive: Option<Drive>

The updated state of the shared drive. Present if the changeType is drive, the user is still a member of the shared drive, and the shared drive has not been deleted.

drive_id: Option<String>

The ID of the shared drive associated with this change.

file: Option<File>

The updated state of the file. Present if the type is file and the file has not been removed from this list of changes.

file_id: Option<String>

The ID of the file which has changed.

kind: Option<String>

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

removed: Option<bool>

Whether the file or shared drive has been removed from this list of changes, for example by deletion or loss of access.

team_drive: Option<TeamDrive>

Deprecated - use drive instead.

team_drive_id: Option<String>

Deprecated - use driveId instead.

time: Option<DateTime<Utc>>

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

type_: Option<String>

Deprecated - use changeType instead.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more