Struct google_youtube3::api::Activity[][src]

pub struct Activity {
    pub content_details: Option<ActivityContentDetails>,
    pub etag: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub snippet: Option<ActivitySnippet>,
}

An activity resource contains information about an action that a particular channel, or user, has taken on YouTube.The actions reported in activity feeds include rating a video, sharing a video, marking a video as a favorite, commenting on a video, uploading a video, and so forth. Each activity resource identifies the type of action, the channel associated with the action, and the resource(s) associated with the action, such as the video that was rated or uploaded.

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

Fields

content_details: Option<ActivityContentDetails>

The contentDetails object contains information about the content associated with the activity. For example, if the snippet.type value is videoRated, then the contentDetails object’s content identifies the rated video.

etag: Option<String>

Etag of this resource

id: Option<String>

The ID that YouTube uses to uniquely identify the activity.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string “youtube#activity”.

snippet: Option<ActivitySnippet>

The snippet object contains basic details about the activity, including the activity’s type and group ID.

Trait Implementations

impl Clone for Activity[src]

impl Debug for Activity[src]

impl Default for Activity[src]

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

impl Part for Activity[src]

impl Serialize for Activity[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.