pub struct AnswerField {
pub id: String,
pub _type: String,
pub _ref: String,
pub title: Option<String>,
}
Fields§
§id: String
The unique id of the form field the answer refers to.
_type: String
The field’s type in the original form.
_ref: String
The reference for the question the answer relates to. Use the ref value to match answers with questions. The Responses payload only includes ref for the fields where you specified them when you created the form.
title: Option<String>
The form field’s title which the answer is related to.
Trait Implementations§
Source§impl Clone for AnswerField
impl Clone for AnswerField
Source§fn clone(&self) -> AnswerField
fn clone(&self) -> AnswerField
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 AnswerField
impl Debug for AnswerField
Source§impl<'de> Deserialize<'de> for AnswerField
impl<'de> Deserialize<'de> for AnswerField
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 AnswerField
impl RefUnwindSafe for AnswerField
impl Send for AnswerField
impl Sync for AnswerField
impl Unpin for AnswerField
impl UnwindSafe for AnswerField
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