pub struct RelatedStream {
pub url: String,
pub title: String,
pub thumbnail: String,
pub uploader_avatar: Option<String>,
pub uploader_name: String,
pub uploader_url: String,
pub uploaded_date: Option<String>,
pub uploader_verified: bool,
pub duration: i32,
pub views: i64,
pub uploaded: i64,
}
Fields§
§url: String
§title: String
§thumbnail: String
§uploader_avatar: Option<String>
§uploader_name: String
§uploader_url: String
§uploaded_date: Option<String>
§uploader_verified: bool
§duration: i32
§views: i64
§uploaded: i64
Trait Implementations§
Source§impl Debug for RelatedStream
impl Debug for RelatedStream
Source§impl<'de> Deserialize<'de> for RelatedStream
impl<'de> Deserialize<'de> for RelatedStream
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
Auto Trait Implementations§
impl Freeze for RelatedStream
impl RefUnwindSafe for RelatedStream
impl Send for RelatedStream
impl Sync for RelatedStream
impl Unpin for RelatedStream
impl UnwindSafe for RelatedStream
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