Struct twitch_api_rs::resource::clips::ClipInfo[][src]

pub struct ClipInfo {
    pub broadcaster_id: BroadcasterId,
    pub broadcaster_name: BroadcasterName,
    pub created_at: RFC3339Time,
    pub creator_id: UserId,
    pub creator_name: UserName,
    pub embed_url: Url,
    pub game_id: GameId,
    pub clip_id: ClipId,
    pub language: ISOLanguage,
    pub thumbnail_url: Url,
    pub title: ClipTitle,
    pub url: Url,
    pub video_id: VideoId,
    pub view_count: ViewCount,
}

Information relating to a single clip resource

Fields

broadcaster_id: BroadcasterIdbroadcaster_name: BroadcasterNamecreated_at: RFC3339Timecreator_id: UserIdcreator_name: UserNameembed_url: Urlgame_id: GameIdclip_id: ClipIdlanguage: ISOLanguagethumbnail_url: Urltitle: ClipTitleurl: Urlvideo_id: VideoIdview_count: ViewCount

Trait Implementations

impl Debug for ClipInfo[src]

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

impl Serialize for ClipInfo[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> Instrument for T[src]

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

impl<T> Response for T where
    T: DeserializeOwned
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,