pub struct StreamLink {
pub url: String,
pub resolution: String,
pub hls: bool,
pub provider: String,
pub downloadable: bool,
pub headers: RequestHeaders,
pub subtitles: Vec<SubtitleTrack>,
}Fields§
§url: String§resolution: String§hls: bool§provider: String§downloadable: bool§headers: RequestHeaders§subtitles: Vec<SubtitleTrack>Trait Implementations§
Source§impl Clone for StreamLink
impl Clone for StreamLink
Source§fn clone(&self) -> StreamLink
fn clone(&self) -> StreamLink
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 StreamLink
impl Debug for StreamLink
Source§impl<'de> Deserialize<'de> for StreamLink
impl<'de> Deserialize<'de> for StreamLink
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
impl Eq for StreamLink
Source§impl PartialEq for StreamLink
impl PartialEq for StreamLink
Source§impl Serialize for StreamLink
impl Serialize for StreamLink
impl StructuralPartialEq for StreamLink
Auto Trait Implementations§
impl Freeze for StreamLink
impl RefUnwindSafe for StreamLink
impl Send for StreamLink
impl Sync for StreamLink
impl Unpin for StreamLink
impl UnsafeUnpin for StreamLink
impl UnwindSafe for StreamLink
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