#[non_exhaustive]pub struct ChannelSharedChatEndV1Payload {
pub session_id: SharedChatSessionId,
pub broadcaster_user_id: UserId,
pub broadcaster_user_name: DisplayName,
pub broadcaster_user_login: UserName,
pub host_broadcaster_user_id: UserId,
pub host_broadcaster_user_name: DisplayName,
pub host_broadcaster_user_login: UserName,
}
Available on crate feature
eventsub
only.Expand description
channel.shared_chat.end
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.session_id: SharedChatSessionId
The unique identifier for the shared chat session.
broadcaster_user_id: UserId
The User ID of the channel in the subscription condition which is no longer active in the shared chat session.
broadcaster_user_name: DisplayName
The display name of the channel in the subscription condition which is no longer active in the shared chat session.
broadcaster_user_login: UserName
The user login of the channel in the subscription condition which is no longer active in the shared chat session.
host_broadcaster_user_id: UserId
The User ID of the host channel.
host_broadcaster_user_name: DisplayName
The display name of the host channel.
host_broadcaster_user_login: UserName
The user login of the host channel.
Trait Implementations§
Source§fn clone(&self) -> ChannelSharedChatEndV1Payload
fn clone(&self) -> ChannelSharedChatEndV1Payload
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§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§fn eq(&self, other: &ChannelSharedChatEndV1Payload) -> bool
fn eq(&self, other: &ChannelSharedChatEndV1Payload) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Auto Trait Implementations§
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