[][src]Struct google_youtube3::Activity

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

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.

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

snippet: Option<ActivitySnippet>

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

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.

kind: Option<String>

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

etag: Option<String>

Etag of this resource.

id: Option<String>

The ID that YouTube uses to uniquely identify the activity.

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 RequestValue for Activity[src]

impl ResponseResult for Activity[src]

impl Serialize for Activity[src]

impl ToParts for Activity[src]

fn to_parts(&self) -> String[src]

Return a comma separated list of members that are currently set, i.e. for which self.member.is_some(). The produced string is suitable for use as a parts list that indicates the parts you are sending, and/or the parts you want to see in the server response.

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