#[non_exhaustive]pub struct Chatter {
pub user_id: UserId,
pub user_login: UserName,
pub user_name: DisplayName,
}
Available on crate feature
helix
only.Expand description
Return Values for Get Chatters
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_id: UserId
The ID of a user that’s connected to the broadcaster’s chat room.
user_login: UserName
The user’s login name.
user_name: DisplayName
The user’s display name.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Chatter
impl<'de> Deserialize<'de> for Chatter
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
impl Eq for Chatter
impl StructuralPartialEq for Chatter
Auto Trait Implementations§
impl Freeze for Chatter
impl RefUnwindSafe for Chatter
impl Send for Chatter
impl Sync for Chatter
impl Unpin for Chatter
impl UnwindSafe for Chatter
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