#[non_exhaustive]pub struct ChannelPredictionLockV1Payload {
pub broadcaster_user_id: UserId,
pub broadcaster_user_login: UserName,
pub broadcaster_user_name: DisplayName,
pub id: PredictionId,
pub locked_at: Timestamp,
pub outcomes: Vec<PredictionOutcome>,
pub started_at: Timestamp,
pub title: String,
}
Available on crate feature
eventsub
only.Expand description
channel.prediction.lock
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.
id: PredictionId
Channel Points Prediction ID.
locked_at: Timestamp
The time the Channel Points Prediction will automatically lock.
outcomes: Vec<PredictionOutcome>
An array of outcomes for the Channel Points Prediction. Includes top_predictors.
started_at: Timestamp
The time the Channel Points Prediction started.
title: String
Title for the Channel Points Prediction.
Trait Implementations§
Source§impl Clone for ChannelPredictionLockV1Payload
impl Clone for ChannelPredictionLockV1Payload
Source§fn clone(&self) -> ChannelPredictionLockV1Payload
fn clone(&self) -> ChannelPredictionLockV1Payload
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 ChannelPredictionLockV1Payload
impl<'de> Deserialize<'de> for ChannelPredictionLockV1Payload
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 ChannelPredictionLockV1Payload
impl PartialEq for ChannelPredictionLockV1Payload
Source§fn eq(&self, other: &ChannelPredictionLockV1Payload) -> bool
fn eq(&self, other: &ChannelPredictionLockV1Payload) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ChannelPredictionLockV1Payload
impl StructuralPartialEq for ChannelPredictionLockV1Payload
Auto Trait Implementations§
impl Freeze for ChannelPredictionLockV1Payload
impl RefUnwindSafe for ChannelPredictionLockV1Payload
impl Send for ChannelPredictionLockV1Payload
impl Sync for ChannelPredictionLockV1Payload
impl Unpin for ChannelPredictionLockV1Payload
impl UnwindSafe for ChannelPredictionLockV1Payload
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