[][src]Struct google_driveactivity2::DriveActivity

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

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

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.

timestamp: Option<String>

The activity occurred at this specific time.

time_range: Option<TimeRange>

The activity occurred over this time range.

actors: Option<Vec<Actor>>

All actor(s) responsible for the activity.

actions: Option<Vec<Action>>

Details on all actions in this activity.

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.

Trait Implementations

impl Part for DriveActivity[src]

impl Default for DriveActivity[src]

impl Clone for DriveActivity[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for DriveActivity[src]

impl Serialize for DriveActivity[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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