pub enum PollType {
Regular(PollTypeRegular),
Quiz(PollTypeQuiz),
}
Variants§
Regular(PollTypeRegular)
A regular poll
Quiz(PollTypeQuiz)
A poll in quiz mode, which has exactly one correct answer option and can be answered only once
Trait Implementations§
source§impl<'de> Deserialize<'de> for PollType
impl<'de> Deserialize<'de> for PollType
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