#[non_exhaustive]pub struct ChannelUpdateV2 {
pub broadcaster_user_id: UserId,
}Available on crate feature
eventsub only.Expand description
channel.update subscription type sends notifications when a broadcaster updates the category, title, mature flag, or broadcast language for their 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 get updates for.
Implementations§
Source§impl ChannelUpdateV2
impl ChannelUpdateV2
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 get updates for.
Trait Implementations§
Source§impl Clone for ChannelUpdateV2
impl Clone for ChannelUpdateV2
Source§fn clone(&self) -> ChannelUpdateV2
fn clone(&self) -> ChannelUpdateV2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChannelUpdateV2
impl Debug for ChannelUpdateV2
Source§impl<'de> Deserialize<'de> for ChannelUpdateV2
impl<'de> Deserialize<'de> for ChannelUpdateV2
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 ChannelUpdateV2
impl EventSubscription for ChannelUpdateV2
Source§const EVENT_TYPE: EventType = EventType::ChannelUpdate
const EVENT_TYPE: EventType = EventType::ChannelUpdate
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 = ChannelUpdateV2Payload
type Payload = ChannelUpdateV2Payload
Payload for given subscription
Source§impl PartialEq for ChannelUpdateV2
impl PartialEq for ChannelUpdateV2
Source§fn eq(&self, other: &ChannelUpdateV2) -> bool
fn eq(&self, other: &ChannelUpdateV2) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChannelUpdateV2
impl Serialize for ChannelUpdateV2
impl Eq for ChannelUpdateV2
impl StructuralPartialEq for ChannelUpdateV2
Auto Trait Implementations§
impl Freeze for ChannelUpdateV2
impl RefUnwindSafe for ChannelUpdateV2
impl Send for ChannelUpdateV2
impl Sync for ChannelUpdateV2
impl Unpin for ChannelUpdateV2
impl UnsafeUnpin for ChannelUpdateV2
impl UnwindSafe for ChannelUpdateV2
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