[−][src]Struct twitch_irc::message::UserStateMessage
Sent when you join a channel or when you successfully sent a PRIVMSG message to a channel.
This specifies details about the logged in user in a given channel.
This message is similar to GLOBALUSERSTATE, but carries the context of a channel_login
(and therefore possibly different badges and badge_info) and omits the user_id.
Fields
channel_login: StringLogin name of the channel this USERSTATE message specifies the logged in user's state in.
user_name: String(Display) name of the logged in user.
badge_info: Vec<Badge>Metadata related to the chat badges in the badges tag.
Currently this is used only for subscriber, to indicate the exact number of months
the user has been a subscriber. This number is finer grained than the version number in
badges. For example, a user who has been a subscriber for 45 months would have a
badge_info value of 45 but might have a badges version number for only 3 years.
badges: Vec<Badge>List of badges the logged in user has in this channel.
emote_sets: HashSet<u64>List of emote set IDs the logged in user has available. This always contains at least 0.
name_color: Option<RGBColor>What name color the logged in user has chosen. The same color is used in all channels.
source: IRCMessageThe message that this UserStateMessage was parsed from.
Trait Implementations
impl Clone for UserStateMessage[src]
pub fn clone(&self) -> UserStateMessage[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for UserStateMessage[src]
impl From<UserStateMessage> for IRCMessage[src]
pub fn from(msg: UserStateMessage) -> IRCMessage[src]
impl PartialEq<UserStateMessage> for UserStateMessage[src]
pub fn eq(&self, other: &UserStateMessage) -> bool[src]
pub fn ne(&self, other: &UserStateMessage) -> bool[src]
impl StructuralPartialEq for UserStateMessage[src]
impl TryFrom<IRCMessage> for UserStateMessage[src]
type Error = ServerMessageParseError
The type returned in the event of a conversion error.
pub fn try_from(
source: IRCMessage
) -> Result<UserStateMessage, ServerMessageParseError>[src]
source: IRCMessage
) -> Result<UserStateMessage, ServerMessageParseError>
Auto Trait Implementations
impl RefUnwindSafe for UserStateMessage[src]
impl Send for UserStateMessage[src]
impl Sync for UserStateMessage[src]
impl Unpin for UserStateMessage[src]
impl UnwindSafe for UserStateMessage[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,