Struct google_drive2::api::Change[][src]

pub struct Change {
    pub change_type: Option<String>,
    pub deleted: Option<bool>,
    pub drive: Option<Drive>,
    pub drive_id: Option<String>,
    pub file: Option<File>,
    pub file_id: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub modification_date: Option<String>,
    pub self_link: Option<String>,
    pub team_drive: Option<TeamDrive>,
    pub team_drive_id: Option<String>,
    pub type_: Option<String>,
}

Representation of 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.

deleted: Option<bool>

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

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 associated with this change.

id: Option<String>

The ID of the change.

kind: Option<String>

This is always drive#change.

modification_date: Option<String>

The time of this modification.

self_link: Option<String>

A link back to this change.

team_drive: Option<TeamDrive>

Deprecated - use drive instead.

team_drive_id: Option<String>

Deprecated - use driveId instead.

type_: Option<String>

Deprecated - use changeType instead.

Trait Implementations

impl Clone for Change[src]

impl Debug for Change[src]

impl Default for Change[src]

impl<'de> Deserialize<'de> for Change[src]

impl Resource for Change[src]

impl ResponseResult for Change[src]

impl Serialize for Change[src]

Auto Trait Implementations

impl RefUnwindSafe for Change

impl Send for Change

impl Sync for Change

impl Unpin for Change

impl UnwindSafe for Change

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.