#[non_exhaustive]pub struct ChannelChatUserMessageUpdateV1 {
pub broadcaster_user_id: UserId,
pub user_id: UserId,
}Available on crate feature
eventsub only.Expand description
channel.chat.user_message_update: a user’s message’s automod status is updated.
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: UserIdUser ID of the channel to receive chat message events for.
user_id: UserIdThe user ID to read chat as.
Implementations§
Source§impl ChannelChatUserMessageUpdateV1
impl ChannelChatUserMessageUpdateV1
Sourcepub fn builder() -> ChannelChatUserMessageUpdateV1Builder<((), ())>
pub fn builder() -> ChannelChatUserMessageUpdateV1Builder<((), ())>
Create a builder for building ChannelChatUserMessageUpdateV1.
On the builder, call .broadcaster_user_id(...), .user_id(...) to set the values of the fields.
Finally, call .build() to create the instance of ChannelChatUserMessageUpdateV1.
Trait Implementations§
Source§impl Clone for ChannelChatUserMessageUpdateV1
impl Clone for ChannelChatUserMessageUpdateV1
Source§fn clone(&self) -> ChannelChatUserMessageUpdateV1
fn clone(&self) -> ChannelChatUserMessageUpdateV1
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<'de> Deserialize<'de> for ChannelChatUserMessageUpdateV1
impl<'de> Deserialize<'de> for ChannelChatUserMessageUpdateV1
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 ChannelChatUserMessageUpdateV1
impl EventSubscription for ChannelChatUserMessageUpdateV1
Source§const EVENT_TYPE: EventType = EventType::ChannelChatUserMessageUpdate
const EVENT_TYPE: EventType = EventType::ChannelChatUserMessageUpdate
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 = ChannelChatUserMessageUpdateV1Payload
type Payload = ChannelChatUserMessageUpdateV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelChatUserMessageUpdateV1
impl PartialEq for ChannelChatUserMessageUpdateV1
Source§fn eq(&self, other: &ChannelChatUserMessageUpdateV1) -> bool
fn eq(&self, other: &ChannelChatUserMessageUpdateV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ChannelChatUserMessageUpdateV1
impl StructuralPartialEq for ChannelChatUserMessageUpdateV1
Auto Trait Implementations§
impl Freeze for ChannelChatUserMessageUpdateV1
impl RefUnwindSafe for ChannelChatUserMessageUpdateV1
impl Send for ChannelChatUserMessageUpdateV1
impl Sync for ChannelChatUserMessageUpdateV1
impl Unpin for ChannelChatUserMessageUpdateV1
impl UnsafeUnpin for ChannelChatUserMessageUpdateV1
impl UnwindSafe for ChannelChatUserMessageUpdateV1
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