[][src]Struct google_drive2::Change

pub struct Change {
    pub team_drive: Option<TeamDrive>,
    pub kind: Option<String>,
    pub deleted: Option<bool>,
    pub change_type: Option<String>,
    pub drive: Option<Drive>,
    pub drive_id: Option<String>,
    pub file: Option<File>,
    pub modification_date: Option<String>,
    pub team_drive_id: Option<String>,
    pub type_: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub file_id: 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

team_drive: Option<TeamDrive>

Deprecated - use drive instead.

kind: Option<String>

This is always drive#change.

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.

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.

modification_date: Option<String>

The time of this modification.

team_drive_id: Option<String>

Deprecated - use driveId instead.

type_: Option<String>

Deprecated - use changeType instead.

id: Option<String>

The ID of the change.

self_link: Option<String>

A link back to this change.

file_id: Option<String>

The ID of the file associated with this change.

Trait Implementations

impl Resource for Change[src]

impl ResponseResult for Change[src]

impl Clone for Change[src]

impl Default for Change[src]

impl Debug for Change[src]

impl Serialize for Change[src]

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

Auto Trait Implementations

impl Send for Change

impl Sync for Change

impl Unpin for Change

impl UnwindSafe for Change

impl RefUnwindSafe for Change

Blanket Implementations

impl<T> From<T> 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 = !

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.

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

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

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

impl<T> Typeable for T where
    T: Any

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