#[non_exhaustive]pub struct ChannelModerateV1 {
pub broadcaster_user_id: UserId,
pub moderator_user_id: UserId,
}
Available on crate feature
eventsub
only.Expand description
channel.moderate
: a moderator performs a moderation action in a 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 user ID of the broadcaster.
moderator_user_id: UserId
The user ID of the moderator.
Implementations§
Trait Implementations§
Source§impl Clone for ChannelModerateV1
impl Clone for ChannelModerateV1
Source§fn clone(&self) -> ChannelModerateV1
fn clone(&self) -> ChannelModerateV1
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 ChannelModerateV1
impl Debug for ChannelModerateV1
Source§impl<'de> Deserialize<'de> for ChannelModerateV1
impl<'de> Deserialize<'de> for ChannelModerateV1
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 ChannelModerateV1
impl EventSubscription for ChannelModerateV1
Source§const EVENT_TYPE: EventType = EventType::ChannelModerate
const EVENT_TYPE: EventType = EventType::ChannelModerate
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 = ChannelModerateV1Payload
type Payload = ChannelModerateV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelModerateV1
impl PartialEq for ChannelModerateV1
Source§impl Serialize for ChannelModerateV1
impl Serialize for ChannelModerateV1
impl Eq for ChannelModerateV1
impl StructuralPartialEq for ChannelModerateV1
Auto Trait Implementations§
impl Freeze for ChannelModerateV1
impl RefUnwindSafe for ChannelModerateV1
impl Send for ChannelModerateV1
impl Sync for ChannelModerateV1
impl Unpin for ChannelModerateV1
impl UnwindSafe for ChannelModerateV1
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