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