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

#[non_exhaustive]pub struct ReSub {
    pub benefit_end_month: Option<i64>,
    pub channel_id: UserId,
    pub channel_name: UserName,
    pub cumulative_months: i64,
    pub is_gift: bool,
    pub streak_months: Option<i64>,
    pub multi_month_duration: Option<i64>,
    pub sub_message: SubMessage,
    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 resubscription

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

cumulative_months: i64

Cumulative months that user has been subscribed

is_gift: bool

Resubscription is a gift

streak_months: Option<i64>

Months the user has been subscribed for in a row.

multi_month_duration: Option<i64>

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

sub_message: SubMessage

Message sent with this 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 subscribed

user_name: UserName

Username of user that subscribed

display_name: DisplayName

Display name of user that subscribed

Trait Implementations

impl Clone for ReSub[src]

impl Debug for ReSub[src]

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

impl Eq for ReSub[src]

impl PartialEq<ReSub> for ReSub[src]

impl Serialize for ReSub[src]

impl StructuralEq for ReSub[src]

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