Enum twitch_api2::pubsub::channel_cheer::ChannelCheerEventsPublicV1Reply[][src]

#[non_exhaustive]pub enum ChannelCheerEventsPublicV1Reply {
    CheerBomb {
        display_name: DisplayName,
        domain: String,
        selected_count: i64,
        total_reward_count: i64,
        trigger_amount: i64,
        trigger_type: TriggerType,
        user_id: UserId,
        user_login: UserName,
    },
}
This is supported on crate features pubsub and unsupported only.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CheerBomb

A cheer bomb happened

Fields of CheerBomb

display_name: DisplayName

Display name of user

domain: String

Domain of cheer reward. Name of active twitch event

selected_count: i64

Selected count for cheer. e.g How many that will receive rewards

total_reward_count: i64

Unknown

trigger_amount: i64

Unknown

trigger_type: TriggerType

Type of cheerbomb.

user_id: UserId

Id of the user

user_login: UserName

Login name of the user, not capitalized

Trait Implementations

impl Clone for ChannelCheerEventsPublicV1Reply[src]

impl Debug for ChannelCheerEventsPublicV1Reply[src]

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

impl Eq for ChannelCheerEventsPublicV1Reply[src]

impl PartialEq<ChannelCheerEventsPublicV1Reply> for ChannelCheerEventsPublicV1Reply[src]

impl Serialize for ChannelCheerEventsPublicV1Reply[src]

impl StructuralEq for ChannelCheerEventsPublicV1Reply[src]

impl StructuralPartialEq for ChannelCheerEventsPublicV1Reply[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]