pub struct Live {Show 13 fields
pub live_id: u64,
pub live_title: String,
pub live_thumbnail_image_url: Option<Url>,
pub concurrent_user_count: u64,
pub open_date: String,
pub adult: bool,
pub tags: Vec<String>,
pub category_type: CategoryType,
pub live_category: String,
pub live_category_value: String,
pub channel_id: ChannelId,
pub channel_name: String,
pub channel_image_url: Option<Url>,
}Fields§
§live_id: u64§live_title: String§live_thumbnail_image_url: Option<Url>§concurrent_user_count: u64§open_date: String§adult: bool§category_type: CategoryType§live_category: String§live_category_value: String§channel_id: ChannelId§channel_name: String§channel_image_url: Option<Url>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Live
impl<'de> Deserialize<'de> for Live
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 Live
impl RefUnwindSafe for Live
impl Send for Live
impl Sync for Live
impl Unpin for Live
impl UnsafeUnpin for Live
impl UnwindSafe for Live
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