#[non_exhaustive]pub enum PollStatus {
Active,
Completed,
Terminated,
Archived,
Moderated,
Invalid,
}
Available on crate feature
points
only.Expand description
Status of a poll
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Active
Poll is currently in progress.
Completed
Poll has reached its ended_at time.
Terminated
Poll has been manually terminated before its ended_at time.
Archived
Poll is no longer visible on the channel.
Moderated
Poll is no longer visible to any user on Twitch.
Invalid
Something went wrong determining the state.
Trait Implementations§
Source§impl Clone for PollStatus
impl Clone for PollStatus
Source§fn clone(&self) -> PollStatus
fn clone(&self) -> PollStatus
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 Debug for PollStatus
impl Debug for PollStatus
Source§impl<'de> Deserialize<'de> for PollStatus
impl<'de> Deserialize<'de> for PollStatus
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 PollStatus
impl PartialEq for PollStatus
Source§impl Serialize for PollStatus
impl Serialize for PollStatus
impl Eq for PollStatus
impl StructuralPartialEq for PollStatus
Auto Trait Implementations§
impl Freeze for PollStatus
impl RefUnwindSafe for PollStatus
impl Send for PollStatus
impl Sync for PollStatus
impl Unpin for PollStatus
impl UnwindSafe for PollStatus
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)