pub struct PollEndData {
pub id: String,
pub broadcaster: User,
pub title: String,
pub choices: Vec<Choices>,
pub bits_voting: BitsVotingData,
pub channel_points_voting: ChannelPointsVoting,
pub started_at: String,
pub ended_at: String,
pub status: String,
}Fields§
§id: String§broadcaster: User§title: String§choices: Vec<Choices>§bits_voting: BitsVotingData§channel_points_voting: ChannelPointsVoting§started_at: String§ended_at: String§status: StringTrait Implementations§
Source§impl Clone for PollEndData
impl Clone for PollEndData
Source§fn clone(&self) -> PollEndData
fn clone(&self) -> PollEndData
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 PollEndData
impl Debug for PollEndData
Source§impl<'de> Deserialize<'de> for PollEndData
impl<'de> Deserialize<'de> for PollEndData
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
Auto Trait Implementations§
impl Freeze for PollEndData
impl RefUnwindSafe for PollEndData
impl Send for PollEndData
impl Sync for PollEndData
impl Unpin for PollEndData
impl UnwindSafe for PollEndData
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