pub struct FollowedChannel {
pub id: u64,
pub user_id: u64,
pub slug: String,
pub is_banned: bool,
pub vod_enabled: bool,
pub subscription_enabled: bool,
pub is_affiliate: bool,
pub verified: bool,
pub followers_count: u64,
pub can_host: bool,
pub user: Option<FollowedChannelUser>,
pub livestream: Option<FollowedChannelLivestream>,
}Expand description
A followed channel from Kick’s unofficial v2 API.
Returned by fetch_followed_channels.
Contains channel info, user profile, and livestream status for channels
the authenticated user follows.
⚠️ Unofficial API — This uses Kick’s internal v2 API, not the public API. It may break without notice.
Fields§
§id: u64Channel ID
user_id: u64User ID of the broadcaster
slug: StringChannel URL slug
is_banned: boolWhether the channel is banned
vod_enabled: boolWhether VODs are enabled
subscription_enabled: boolWhether subscriptions are enabled
is_affiliate: boolWhether the channel is a Kick affiliate
verified: boolWhether the channel is verified
followers_count: u64Number of followers
can_host: boolWhether the channel can host other channels
user: Option<FollowedChannelUser>Broadcaster’s user profile
livestream: Option<FollowedChannelLivestream>Current livestream info (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