Struct twitch_api2::pubsub::channel_subscriptions::SubGift[][src]

#[non_exhaustive]pub struct SubGift {
    pub benefit_end_month: Option<i64>,
    pub channel_id: UserId,
    pub channel_name: UserName,
    pub months: i64,
    pub multi_month_duration: Option<i64>,
    pub recipient_display_name: DisplayName,
    pub recipient_id: UserId,
    pub recipient_user_name: UserName,
    pub sub_plan: SubscriptionTier,
    pub sub_plan_name: String,
    pub time: Timestamp,
    pub user_id: UserId,
    pub user_name: UserName,
    pub display_name: DisplayName,
    // some fields omitted
}
This is supported on crate feature pubsub only.

A gifted subscription happened

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.
benefit_end_month: Option<i64>

Unknown

channel_id: UserId

ID of the channel that has been subscribed or subgifted

channel_name: UserName

Name of the channel that has been subscribed or subgifted

months: i64

Months

multi_month_duration: Option<i64>

Duration of subscription, e.g 1, 3 or 6

recipient_display_name: DisplayName

Display name of user that received gifted subscription

recipient_id: UserId

Username of user that received gifted subscription

recipient_user_name: UserName

Username of user that received gifted subscription

sub_plan: SubscriptionTier

Subscription plan

sub_plan_name: String

Name of subscription plan

time: Timestamp

Time when pubsub message was sent

user_id: UserId

ID of user that purchased gifted subscription

user_name: UserName

Username of user that purchased gifted subscription

display_name: DisplayName

Display name of user that purchased gifted subscription

Trait Implementations

impl Clone for SubGift[src]

impl Debug for SubGift[src]

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

impl Eq for SubGift[src]

impl PartialEq<SubGift> for SubGift[src]

impl Serialize for SubGift[src]

impl StructuralEq for SubGift[src]

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