[][src]Struct google_drive3::Change

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

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>

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

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.

time: Option<String>

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

team_drive_id: Option<String>

Deprecated - use driveId instead.

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.

type_: Option<String>

Deprecated - use changeType instead.

file_id: Option<String>

The ID of the file which has changed.

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 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, 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.

impl<T> Typeable for T where
    T: Any