#[non_exhaustive]pub struct ChannelPointsCustomRewardUpdateV1 {
pub broadcaster_user_id: UserId,
pub reward_id: Option<RewardId>,
}Available on crate feature
eventsub only.Expand description
channel.channel_points_custom_reward.update: a custom channel points reward has been updated for the specified channel.
Fields (Non-exhaustive)§
This struct is marked as 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.broadcaster_user_id: UserIdThe broadcaster user ID for the channel you want to receive channel points custom reward remove notifications for.
reward_id: Option<RewardId>Optional. Specify a reward id to only receive notifications for a specific reward.
Implementations§
Source§impl ChannelPointsCustomRewardUpdateV1
impl ChannelPointsCustomRewardUpdateV1
Sourcepub fn builder() -> ChannelPointsCustomRewardUpdateV1Builder<((), ())>
pub fn builder() -> ChannelPointsCustomRewardUpdateV1Builder<((), ())>
Create a builder for building ChannelPointsCustomRewardUpdateV1.
On the builder, call .broadcaster_user_id(...), .reward_id(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of ChannelPointsCustomRewardUpdateV1.
Source§impl ChannelPointsCustomRewardUpdateV1
impl ChannelPointsCustomRewardUpdateV1
Sourcepub fn broadcaster_user_id(broadcaster_user_id: impl Into<UserId>) -> Self
pub fn broadcaster_user_id(broadcaster_user_id: impl Into<UserId>) -> Self
The broadcaster user ID for the channel you want to receive channel points custom reward remove notifications for.
Trait Implementations§
Source§impl Clone for ChannelPointsCustomRewardUpdateV1
impl Clone for ChannelPointsCustomRewardUpdateV1
Source§fn clone(&self) -> ChannelPointsCustomRewardUpdateV1
fn clone(&self) -> ChannelPointsCustomRewardUpdateV1
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ChannelPointsCustomRewardUpdateV1
impl<'de> Deserialize<'de> for ChannelPointsCustomRewardUpdateV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl EventSubscription for ChannelPointsCustomRewardUpdateV1
impl EventSubscription for ChannelPointsCustomRewardUpdateV1
Source§const EVENT_TYPE: EventType = EventType::ChannelPointsCustomRewardUpdate
const EVENT_TYPE: EventType = EventType::ChannelPointsCustomRewardUpdate
Subscription type name.
Source§const SCOPE: Validator
const SCOPE: Validator
Available on crate feature
twitch_oauth2 only.Scopes needed by this subscription
Source§type Payload = ChannelPointsCustomRewardUpdateV1Payload
type Payload = ChannelPointsCustomRewardUpdateV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelPointsCustomRewardUpdateV1
impl PartialEq for ChannelPointsCustomRewardUpdateV1
Source§fn eq(&self, other: &ChannelPointsCustomRewardUpdateV1) -> bool
fn eq(&self, other: &ChannelPointsCustomRewardUpdateV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ChannelPointsCustomRewardUpdateV1
impl StructuralPartialEq for ChannelPointsCustomRewardUpdateV1
Auto Trait Implementations§
impl Freeze for ChannelPointsCustomRewardUpdateV1
impl RefUnwindSafe for ChannelPointsCustomRewardUpdateV1
impl Send for ChannelPointsCustomRewardUpdateV1
impl Sync for ChannelPointsCustomRewardUpdateV1
impl Unpin for ChannelPointsCustomRewardUpdateV1
impl UnsafeUnpin for ChannelPointsCustomRewardUpdateV1
impl UnwindSafe for ChannelPointsCustomRewardUpdateV1
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more