Struct rustube::PlayerResponse[][src]

pub struct PlayerResponse {
    pub assets: Option<Assets>,
    pub microformat: Microformat,
    pub playability_status: PlayabilityStatus,
    pub streaming_data: Option<StreamingData>,
    pub video_details: Arc<VideoDetails>,
    pub tracking_params: String,
}

Fields

assets: Option<Assets>microformat: Microformat
This is supported on crate feature microformat only.
playability_status: PlayabilityStatusstreaming_data: Option<StreamingData>video_details: Arc<VideoDetails>tracking_params: String

Trait Implementations

impl Clone for PlayerResponse[src]

This is supported on crate feature fetch only.

impl Debug for PlayerResponse[src]

This is supported on crate feature fetch only.

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

This is supported on crate feature fetch only.

impl PartialEq<PlayerResponse> for PlayerResponse[src]

This is supported on crate feature fetch only.

impl Serialize for PlayerResponse[src]

This is supported on crate feature fetch only.

impl StructuralPartialEq for PlayerResponse[src]

This is supported on crate feature fetch only.

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.