Struct twitch_api2::pubsub::channel_bits::BitsEventData[][src]

#[non_exhaustive]pub struct BitsEventData {
    pub badge_entitlement: Option<BadgeEntitlement>,
    pub bits_used: i64,
    pub channel_id: UserId,
    pub channel_name: UserName,
    pub chat_message: String,
    pub context: BitsContext,
    pub is_anonymous: bool,
    pub time: Timestamp,
    pub total_bits_used: i64,
    pub user_id: UserId,
    pub user_name: UserName,
}
This is supported on crate feature pubsub only.

Data for bits event

Fields (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.
badge_entitlement: Option<BadgeEntitlement>

If set, describes new unlocked badge for user

bits_used: i64

The number of bits that were sent.

channel_id: UserId

ID of channel where message was sent

channel_name: UserName

Username of channel where message was sent

chat_message: String

The full message that was sent with the bits.

context: BitsContext

Context of bits_event, seems to only be cheer

is_anonymous: bool

Whether the cheer was anonymous.

time: Timestamp

Time when pubsub message was sent

total_bits_used: i64

The total number of bits that were ever sent by the user in the channel.

user_id: UserId

ID of user that sent message

user_name: UserName

Name of user that sent message

Trait Implementations

impl Clone for BitsEventData[src]

impl Debug for BitsEventData[src]

impl<'de> Deserialize<'de> for BitsEventData[src]

impl Eq for BitsEventData[src]

impl PartialEq<BitsEventData> for BitsEventData[src]

impl Serialize for BitsEventData[src]

impl StructuralEq for BitsEventData[src]

impl StructuralPartialEq for BitsEventData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]