pub struct PlayerResponse {
pub assets: Option<Assets>,
pub microformat: Option<Microformat>,
pub playability_status: PlayabilityStatus,
pub streaming_data: Option<StreamingData>,
pub video_details: Arc<VideoDetails>,
pub tracking_params: String,
}Fields§
§assets: Option<Assets>§microformat: Option<Microformat>§playability_status: PlayabilityStatus§streaming_data: Option<StreamingData>§video_details: Arc<VideoDetails>§tracking_params: StringTrait Implementations§
Source§impl Clone for PlayerResponse
impl Clone for PlayerResponse
Source§fn clone(&self) -> PlayerResponse
fn clone(&self) -> PlayerResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlayerResponse
impl Debug for PlayerResponse
Source§impl<'de> Deserialize<'de> for PlayerResponse
impl<'de> Deserialize<'de> for PlayerResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlayerResponse
impl PartialEq for PlayerResponse
Source§fn eq(&self, other: &PlayerResponse) -> bool
fn eq(&self, other: &PlayerResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlayerResponse
impl Serialize for PlayerResponse
impl StructuralPartialEq for PlayerResponse
Auto Trait Implementations§
impl Freeze for PlayerResponse
impl RefUnwindSafe for PlayerResponse
impl Send for PlayerResponse
impl Sync for PlayerResponse
impl Unpin for PlayerResponse
impl UnsafeUnpin for PlayerResponse
impl UnwindSafe for PlayerResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more