#[non_exhaustive]pub struct ChannelModeratorRemoveV1 {
pub broadcaster_user_id: UserId,
}Available on crate feature
eventsub only.Expand description
channel.moderator.remove: a user has moderator privileges removed on a 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: UserIdGet notifications when a moderator is removed in this channel.
Implementations§
Trait Implementations§
Source§impl Clone for ChannelModeratorRemoveV1
impl Clone for ChannelModeratorRemoveV1
Source§fn clone(&self) -> ChannelModeratorRemoveV1
fn clone(&self) -> ChannelModeratorRemoveV1
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 ChannelModeratorRemoveV1
impl Debug for ChannelModeratorRemoveV1
Source§impl<'de> Deserialize<'de> for ChannelModeratorRemoveV1
impl<'de> Deserialize<'de> for ChannelModeratorRemoveV1
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 ChannelModeratorRemoveV1
impl EventSubscription for ChannelModeratorRemoveV1
Source§const EVENT_TYPE: EventType = EventType::ChannelModeratorRemove
const EVENT_TYPE: EventType = EventType::ChannelModeratorRemove
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 = ChannelModeratorRemoveV1Payload
type Payload = ChannelModeratorRemoveV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelModeratorRemoveV1
impl PartialEq for ChannelModeratorRemoveV1
Source§fn eq(&self, other: &ChannelModeratorRemoveV1) -> bool
fn eq(&self, other: &ChannelModeratorRemoveV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChannelModeratorRemoveV1
impl Serialize for ChannelModeratorRemoveV1
impl Eq for ChannelModeratorRemoveV1
impl StructuralPartialEq for ChannelModeratorRemoveV1
Auto Trait Implementations§
impl Freeze for ChannelModeratorRemoveV1
impl RefUnwindSafe for ChannelModeratorRemoveV1
impl Send for ChannelModeratorRemoveV1
impl Sync for ChannelModeratorRemoveV1
impl Unpin for ChannelModeratorRemoveV1
impl UnsafeUnpin for ChannelModeratorRemoveV1
impl UnwindSafe for ChannelModeratorRemoveV1
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