pub struct FollowedChannelUser {
pub id: u64,
pub username: String,
pub bio: Option<String>,
pub profile_pic: Option<String>,
}Expand description
User profile within a followed channel response.
Fields§
§id: u64User ID
username: StringDisplay username
bio: Option<String>User bio/description
profile_pic: Option<String>Profile picture URL
Trait Implementations§
Source§impl Clone for FollowedChannelUser
impl Clone for FollowedChannelUser
Source§fn clone(&self) -> FollowedChannelUser
fn clone(&self) -> FollowedChannelUser
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 FollowedChannelUser
impl Debug for FollowedChannelUser
Source§impl<'de> Deserialize<'de> for FollowedChannelUser
impl<'de> Deserialize<'de> for FollowedChannelUser
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 FollowedChannelUser
impl RefUnwindSafe for FollowedChannelUser
impl Send for FollowedChannelUser
impl Sync for FollowedChannelUser
impl Unpin for FollowedChannelUser
impl UnsafeUnpin for FollowedChannelUser
impl UnwindSafe for FollowedChannelUser
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