pub struct FollowedChannelsResponse {
pub next_cursor: Option<u64>,
pub channels: Vec<FollowedChannel>,
}Expand description
Paginated response from the followed channels endpoint.
⚠️ Unofficial API — This uses Kick’s internal v2 API, not the public API. It may break without notice.
Fields§
§next_cursor: Option<u64>Cursor for fetching the next page. None when there are no more results.
channels: Vec<FollowedChannel>The list of followed channels.
Trait Implementations§
Source§impl Clone for FollowedChannelsResponse
impl Clone for FollowedChannelsResponse
Source§fn clone(&self) -> FollowedChannelsResponse
fn clone(&self) -> FollowedChannelsResponse
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 FollowedChannelsResponse
impl Debug for FollowedChannelsResponse
Source§impl<'de> Deserialize<'de> for FollowedChannelsResponse
impl<'de> Deserialize<'de> for FollowedChannelsResponse
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 FollowedChannelsResponse
impl RefUnwindSafe for FollowedChannelsResponse
impl Send for FollowedChannelsResponse
impl Sync for FollowedChannelsResponse
impl Unpin for FollowedChannelsResponse
impl UnsafeUnpin for FollowedChannelsResponse
impl UnwindSafe for FollowedChannelsResponse
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