#[non_exhaustive]pub struct ChannelUpdateV1Payload {
pub broadcaster_user_id: UserId,
pub broadcaster_user_login: UserName,
pub broadcaster_user_name: DisplayName,
pub title: String,
pub language: String,
pub category_id: CategoryId,
pub category_name: String,
pub is_mature: bool,
}Available on crate feature
eventsub only.Expand description
channel.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: UserIdThe broadcaster’s user ID.
broadcaster_user_login: UserNameThe requested broadcaster login.
broadcaster_user_name: DisplayNameThe broadcaster’s user display name.
title: StringThe channel’s stream title.
language: StringThe channel’s broadcast language.
category_id: CategoryIdThe channel’s category ID.
category_name: StringThe category name.
is_mature: boolA boolean identifying whether the channel is flagged as mature. Valid values are true and false.
Trait Implementations§
Source§impl Clone for ChannelUpdateV1Payload
impl Clone for ChannelUpdateV1Payload
Source§fn clone(&self) -> ChannelUpdateV1Payload
fn clone(&self) -> ChannelUpdateV1Payload
Returns a duplicate 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 ChannelUpdateV1Payload
impl Debug for ChannelUpdateV1Payload
Source§impl<'de> Deserialize<'de> for ChannelUpdateV1Payload
impl<'de> Deserialize<'de> for ChannelUpdateV1Payload
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 ChannelUpdateV1Payload
impl PartialEq for ChannelUpdateV1Payload
Source§impl Serialize for ChannelUpdateV1Payload
impl Serialize for ChannelUpdateV1Payload
impl Eq for ChannelUpdateV1Payload
impl StructuralPartialEq for ChannelUpdateV1Payload
Auto Trait Implementations§
impl Freeze for ChannelUpdateV1Payload
impl RefUnwindSafe for ChannelUpdateV1Payload
impl Send for ChannelUpdateV1Payload
impl Sync for ChannelUpdateV1Payload
impl Unpin for ChannelUpdateV1Payload
impl UnwindSafe for ChannelUpdateV1Payload
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.