pub struct FollowedChannelCategory {
pub id: u64,
pub name: String,
pub slug: String,
}Expand description
Category within a followed channel livestream.
Fields§
§id: u64Category ID
name: StringCategory name
slug: StringCategory URL slug
Trait Implementations§
Source§impl Clone for FollowedChannelCategory
impl Clone for FollowedChannelCategory
Source§fn clone(&self) -> FollowedChannelCategory
fn clone(&self) -> FollowedChannelCategory
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 FollowedChannelCategory
impl Debug for FollowedChannelCategory
Source§impl<'de> Deserialize<'de> for FollowedChannelCategory
impl<'de> Deserialize<'de> for FollowedChannelCategory
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 FollowedChannelCategory
impl RefUnwindSafe for FollowedChannelCategory
impl Send for FollowedChannelCategory
impl Sync for FollowedChannelCategory
impl Unpin for FollowedChannelCategory
impl UnsafeUnpin for FollowedChannelCategory
impl UnwindSafe for FollowedChannelCategory
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