Struct google_driveactivity2::api::DriveActivity[][src]

pub struct DriveActivity {
    pub actions: Option<Vec<Action>>,
    pub actors: Option<Vec<Actor>>,
    pub primary_action_detail: Option<ActionDetail>,
    pub targets: Option<Vec<Target>>,
    pub time_range: Option<TimeRange>,
    pub timestamp: Option<String>,
}

A single Drive activity comprising one or more Actions by one or more Actors on one or more Targets. Some Action groupings occur spontaneously, such as moving an item into a shared folder triggering a permission change. Other groupings of related Actions, such as multiple Actors editing one item or moving multiple files into a new folder, are controlled by the selection of a ConsolidationStrategy in the QueryDriveActivityRequest.

This type is not used in any activity, and only used as part of another schema.

Fields

actions: Option<Vec<Action>>

Details on all actions in this activity.

actors: Option<Vec<Actor>>

All actor(s) responsible for the activity.

primary_action_detail: Option<ActionDetail>

Key information about the primary action for this activity. This is either representative, or the most important, of all actions in the activity, according to the ConsolidationStrategy in the request.

targets: Option<Vec<Target>>

All Google Drive objects this activity is about (e.g. file, folder, drive). This represents the state of the target immediately after the actions occurred.

time_range: Option<TimeRange>

The activity occurred over this time range.

timestamp: Option<String>

The activity occurred at this specific time.

Trait Implementations

impl Clone for DriveActivity[src]

impl Debug for DriveActivity[src]

impl Default for DriveActivity[src]

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

impl Part for DriveActivity[src]

impl Serialize for DriveActivity[src]

Auto Trait Implementations

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.