#[non_exhaustive]pub struct ChannelGoalProgressV1 {
pub broadcaster_user_id: UserId,
}
Available on crate feature
eventsub
only.Expand description
channel.goal.progress
: progress is made towards the specified broadcaster’s goal.
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: UserId
The ID of the broadcaster to get notified about.
Implementations§
Source§impl ChannelGoalProgressV1
impl ChannelGoalProgressV1
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 ID of the broadcaster to get notified about.
Trait Implementations§
Source§impl Clone for ChannelGoalProgressV1
impl Clone for ChannelGoalProgressV1
Source§fn clone(&self) -> ChannelGoalProgressV1
fn clone(&self) -> ChannelGoalProgressV1
Returns a copy 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 Debug for ChannelGoalProgressV1
impl Debug for ChannelGoalProgressV1
Source§impl<'de> Deserialize<'de> for ChannelGoalProgressV1
impl<'de> Deserialize<'de> for ChannelGoalProgressV1
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 ChannelGoalProgressV1
impl EventSubscription for ChannelGoalProgressV1
Source§const EVENT_TYPE: EventType = EventType::ChannelGoalProgress
const EVENT_TYPE: EventType = EventType::ChannelGoalProgress
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 = ChannelGoalProgressV1Payload
type Payload = ChannelGoalProgressV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelGoalProgressV1
impl PartialEq for ChannelGoalProgressV1
Source§impl Serialize for ChannelGoalProgressV1
impl Serialize for ChannelGoalProgressV1
impl Eq for ChannelGoalProgressV1
impl StructuralPartialEq for ChannelGoalProgressV1
Auto Trait Implementations§
impl Freeze for ChannelGoalProgressV1
impl RefUnwindSafe for ChannelGoalProgressV1
impl Send for ChannelGoalProgressV1
impl Sync for ChannelGoalProgressV1
impl Unpin for ChannelGoalProgressV1
impl UnwindSafe for ChannelGoalProgressV1
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