[][src]Struct twitch_api_rs::resource::clips::get_clips::GetClipsResponse

pub struct GetClipsResponse {
    pub clips: Vec<ClipInfo>,
    pub pagination: Pagination,
}

Response container from the Get Clips endpoint

Fields

clips: Vec<ClipInfo>pagination: Pagination

The inner may be empty, indicating that there was not more than the value passed to GetClipsRequest::set_count

Trait Implementations

impl Debug for GetClipsResponse[src]

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

impl Serialize for GetClipsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for GetClipsResponse

impl Send for GetClipsResponse

impl Sync for GetClipsResponse

impl Unpin for GetClipsResponse

impl UnwindSafe for GetClipsResponse

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