#[non_exhaustive]pub struct ChannelShieldModeBeginV1 {
pub broadcaster_user_id: UserId,
pub moderator_user_id: UserId,
}
Available on crate feature
eventsub
only.Expand description
channel.shield_mode.begin
: an user responds to a prediction on 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: UserId
The ID of the broadcaster that you want to receive notifications about when they activate Shield Mode.
moderator_user_id: UserId
The ID of the broadcaster or one of the broadcaster’s moderators.
Implementations§
Source§impl ChannelShieldModeBeginV1
impl ChannelShieldModeBeginV1
Sourcepub fn builder() -> ChannelShieldModeBeginV1Builder<((), ())>
pub fn builder() -> ChannelShieldModeBeginV1Builder<((), ())>
Create a builder for building ChannelShieldModeBeginV1
.
On the builder, call .broadcaster_user_id(...)
, .moderator_user_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ChannelShieldModeBeginV1
.
Trait Implementations§
Source§impl Clone for ChannelShieldModeBeginV1
impl Clone for ChannelShieldModeBeginV1
Source§fn clone(&self) -> ChannelShieldModeBeginV1
fn clone(&self) -> ChannelShieldModeBeginV1
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 ChannelShieldModeBeginV1
impl Debug for ChannelShieldModeBeginV1
Source§impl<'de> Deserialize<'de> for ChannelShieldModeBeginV1
impl<'de> Deserialize<'de> for ChannelShieldModeBeginV1
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 ChannelShieldModeBeginV1
impl EventSubscription for ChannelShieldModeBeginV1
Source§const EVENT_TYPE: EventType = EventType::ChannelShieldModeBegin
const EVENT_TYPE: EventType = EventType::ChannelShieldModeBegin
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 = ChannelShieldModeBeginV1Payload
type Payload = ChannelShieldModeBeginV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelShieldModeBeginV1
impl PartialEq for ChannelShieldModeBeginV1
Source§impl Serialize for ChannelShieldModeBeginV1
impl Serialize for ChannelShieldModeBeginV1
impl Eq for ChannelShieldModeBeginV1
impl StructuralPartialEq for ChannelShieldModeBeginV1
Auto Trait Implementations§
impl Freeze for ChannelShieldModeBeginV1
impl RefUnwindSafe for ChannelShieldModeBeginV1
impl Send for ChannelShieldModeBeginV1
impl Sync for ChannelShieldModeBeginV1
impl Unpin for ChannelShieldModeBeginV1
impl UnwindSafe for ChannelShieldModeBeginV1
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