pub enum QuestionaireEntry {
Block(SubBlock),
Question(QuestionEntry),
RepeatedQuestion(RepeatedQuestionEntry),
}Variants§
Trait Implementations§
Source§impl Clone for QuestionaireEntry
impl Clone for QuestionaireEntry
Source§fn clone(&self) -> QuestionaireEntry
fn clone(&self) -> QuestionaireEntry
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 QuestionaireEntry
impl Debug for QuestionaireEntry
Source§impl<'de> Deserialize<'de> for QuestionaireEntry
impl<'de> Deserialize<'de> for QuestionaireEntry
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 QuestionaireEntry
impl PartialEq for QuestionaireEntry
Source§impl Serialize for QuestionaireEntry
impl Serialize for QuestionaireEntry
impl StructuralPartialEq for QuestionaireEntry
Auto Trait Implementations§
impl Freeze for QuestionaireEntry
impl RefUnwindSafe for QuestionaireEntry
impl Send for QuestionaireEntry
impl Sync for QuestionaireEntry
impl Unpin for QuestionaireEntry
impl UnwindSafe for QuestionaireEntry
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