pub struct FollowedChannel {
pub is_live: bool,
pub profile_picture: Option<String>,
pub channel_slug: Option<String>,
pub viewer_count: u64,
pub category_name: Option<String>,
pub user_username: Option<String>,
pub session_title: Option<String>,
}Expand description
A followed channel from Kick’s unofficial v2 API.
Returned inside FollowedChannelsResponse by
fetch_followed_channels.
⚠️ Unofficial API — This uses Kick’s internal v2 API, not the public API. It may break without notice.
Fields§
§is_live: boolWhether the channel is currently live
profile_picture: Option<String>Profile picture URL
channel_slug: Option<String>Channel URL slug (lowercase)
viewer_count: u64Current viewer count (0 if offline)
category_name: Option<String>Category name (e.g. “Just Chatting”, “IRL”). Empty string if offline.
user_username: Option<String>Display username
session_title: Option<String>Current stream title (None if offline)
Trait Implementations§
Source§impl Clone for FollowedChannel
impl Clone for FollowedChannel
Source§fn clone(&self) -> FollowedChannel
fn clone(&self) -> FollowedChannel
Returns a duplicate of the value. Read more
1.0.0 · 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 FollowedChannel
impl Debug for FollowedChannel
Source§impl<'de> Deserialize<'de> for FollowedChannel
impl<'de> Deserialize<'de> for FollowedChannel
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 FollowedChannel
impl RefUnwindSafe for FollowedChannel
impl Send for FollowedChannel
impl Sync for FollowedChannel
impl Unpin for FollowedChannel
impl UnsafeUnpin for FollowedChannel
impl UnwindSafe for FollowedChannel
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