#[non_exhaustive]pub struct RaidUpdateV2 {
pub creator_id: UserId,
pub force_raid_now_seconds: i64,
pub id: String,
pub source_id: UserId,
pub target_display_name: DisplayName,
pub target_id: UserId,
pub target_login: UserName,
pub target_profile_image: String,
pub transition_jitter_seconds: i64,
pub viewer_count: i64,
}
Available on crate features
pubsub
and unsupported
only.Expand description
Raid update
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.creator_id: UserId
ID of user would be raided
force_raid_now_seconds: i64
Raid will be force started in this many seconds
id: String
ID of raid
source_id: UserId
ID of broadcaster doing raid
target_display_name: DisplayName
Display name of targeted broadcaster/user
target_id: UserId
ID of targeted broadcaster/user
target_login: UserName
Username of targeted broadcaster/user
target_profile_image: String
Profile picture of targeted broadcaster/user
transition_jitter_seconds: i64
Jitter amount
viewer_count: i64
Amount of viewers that will join raid
Trait Implementations§
Source§impl Clone for RaidUpdateV2
impl Clone for RaidUpdateV2
Source§fn clone(&self) -> RaidUpdateV2
fn clone(&self) -> RaidUpdateV2
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 RaidUpdateV2
impl Debug for RaidUpdateV2
Source§impl<'de> Deserialize<'de> for RaidUpdateV2
impl<'de> Deserialize<'de> for RaidUpdateV2
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 RaidUpdateV2
impl PartialEq for RaidUpdateV2
Source§impl Serialize for RaidUpdateV2
impl Serialize for RaidUpdateV2
impl Eq for RaidUpdateV2
impl StructuralPartialEq for RaidUpdateV2
Auto Trait Implementations§
impl Freeze for RaidUpdateV2
impl RefUnwindSafe for RaidUpdateV2
impl Send for RaidUpdateV2
impl Sync for RaidUpdateV2
impl Unpin for RaidUpdateV2
impl UnwindSafe for RaidUpdateV2
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.