#[non_exhaustive]pub struct ChannelUnbanV1Payload {
pub broadcaster_user_id: UserId,
pub broadcaster_user_login: UserName,
pub broadcaster_user_name: DisplayName,
pub user_id: UserId,
pub user_login: UserName,
pub user_name: DisplayName,
pub moderator_user_id: UserId,
pub moderator_user_login: UserName,
pub moderator_user_name: DisplayName,
}
Available on crate feature
eventsub
only.Expand description
channel.unban
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 requested broadcaster ID.
broadcaster_user_login: UserName
The requested broadcaster login.
broadcaster_user_name: DisplayName
The requested broadcaster display name.
user_id: UserId
The user id for the user who was unbanned on the specified channel.
user_login: UserName
The user login for the user who was unbanned on the specified channel.
user_name: DisplayName
The user display name for the user who was unbanned on the specified channel.
moderator_user_id: UserId
The user ID of the issuer of the unban.
moderator_user_login: UserName
The user login of the issuer of the unban.
moderator_user_name: DisplayName
The user name of the issuer of the unban.
Trait Implementations§
Source§impl Clone for ChannelUnbanV1Payload
impl Clone for ChannelUnbanV1Payload
Source§fn clone(&self) -> ChannelUnbanV1Payload
fn clone(&self) -> ChannelUnbanV1Payload
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 ChannelUnbanV1Payload
impl Debug for ChannelUnbanV1Payload
Source§impl<'de> Deserialize<'de> for ChannelUnbanV1Payload
impl<'de> Deserialize<'de> for ChannelUnbanV1Payload
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 ChannelUnbanV1Payload
impl PartialEq for ChannelUnbanV1Payload
Source§impl Serialize for ChannelUnbanV1Payload
impl Serialize for ChannelUnbanV1Payload
impl Eq for ChannelUnbanV1Payload
impl StructuralPartialEq for ChannelUnbanV1Payload
Auto Trait Implementations§
impl Freeze for ChannelUnbanV1Payload
impl RefUnwindSafe for ChannelUnbanV1Payload
impl Send for ChannelUnbanV1Payload
impl Sync for ChannelUnbanV1Payload
impl Unpin for ChannelUnbanV1Payload
impl UnwindSafe for ChannelUnbanV1Payload
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