pub struct SessionInputSelectedAnswerValue {
pub value: String,
pub freeform_values: Option<Vec<String>>,
}Fields§
§value: String§freeform_values: Option<Vec<String>>Free-form text entered instead of selecting an option
Trait Implementations§
Source§impl Clone for SessionInputSelectedAnswerValue
impl Clone for SessionInputSelectedAnswerValue
Source§fn clone(&self) -> SessionInputSelectedAnswerValue
fn clone(&self) -> SessionInputSelectedAnswerValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for SessionInputSelectedAnswerValue
impl<'de> Deserialize<'de> for SessionInputSelectedAnswerValue
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 SessionInputSelectedAnswerValue
impl PartialEq for SessionInputSelectedAnswerValue
Source§fn eq(&self, other: &SessionInputSelectedAnswerValue) -> bool
fn eq(&self, other: &SessionInputSelectedAnswerValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionInputSelectedAnswerValue
Auto Trait Implementations§
impl Freeze for SessionInputSelectedAnswerValue
impl RefUnwindSafe for SessionInputSelectedAnswerValue
impl Send for SessionInputSelectedAnswerValue
impl Sync for SessionInputSelectedAnswerValue
impl Unpin for SessionInputSelectedAnswerValue
impl UnsafeUnpin for SessionInputSelectedAnswerValue
impl UnwindSafe for SessionInputSelectedAnswerValue
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