#[non_exhaustive]pub struct ChannelSuspiciousUserUpdateV1Payload {
pub broadcaster_user_id: UserId,
pub broadcaster_user_login: UserName,
pub broadcaster_user_name: DisplayName,
pub moderator_user_id: UserId,
pub moderator_user_login: UserName,
pub moderator_user_name: DisplayName,
pub user_id: UserId,
pub user_login: UserName,
pub user_name: DisplayName,
pub low_trust_status: LowTrustStatus,
}
Available on crate feature
eventsub
only.Expand description
channel.suspicious_user.update
response payload.
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 channel where the treatment for a suspicious user was updated.
broadcaster_user_login: UserName
The display name of the channel where the treatment for a suspicious user was updated.
broadcaster_user_name: DisplayName
The Login of the channel where the treatment for a suspicious user was updated.
moderator_user_id: UserId
The ID of the moderator that updated the treatment for a suspicious user.
moderator_user_login: UserName
The display name of the moderator that updated the treatment for a suspicious user.
moderator_user_name: DisplayName
The login of the moderator that updated the treatment for a suspicious user.
user_id: UserId
The ID of the suspicious user whose treatment was updated.
user_login: UserName
The display name of the suspicious user whose treatment was updated.
user_name: DisplayName
The login of the suspicious user whose treatment was updated.
low_trust_status: LowTrustStatus
The status set for the suspicious user.
Trait Implementations§
Source§impl Clone for ChannelSuspiciousUserUpdateV1Payload
impl Clone for ChannelSuspiciousUserUpdateV1Payload
Source§fn clone(&self) -> ChannelSuspiciousUserUpdateV1Payload
fn clone(&self) -> ChannelSuspiciousUserUpdateV1Payload
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<'de> Deserialize<'de> for ChannelSuspiciousUserUpdateV1Payload
impl<'de> Deserialize<'de> for ChannelSuspiciousUserUpdateV1Payload
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 PartialEq for ChannelSuspiciousUserUpdateV1Payload
impl PartialEq for ChannelSuspiciousUserUpdateV1Payload
Source§fn eq(&self, other: &ChannelSuspiciousUserUpdateV1Payload) -> bool
fn eq(&self, other: &ChannelSuspiciousUserUpdateV1Payload) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ChannelSuspiciousUserUpdateV1Payload
impl StructuralPartialEq for ChannelSuspiciousUserUpdateV1Payload
Auto Trait Implementations§
impl Freeze for ChannelSuspiciousUserUpdateV1Payload
impl RefUnwindSafe for ChannelSuspiciousUserUpdateV1Payload
impl Send for ChannelSuspiciousUserUpdateV1Payload
impl Sync for ChannelSuspiciousUserUpdateV1Payload
impl Unpin for ChannelSuspiciousUserUpdateV1Payload
impl UnwindSafe for ChannelSuspiciousUserUpdateV1Payload
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