pub struct AnswerSet {
pub form_id: String,
pub spec_version: String,
pub answers: Value,
pub meta: Option<Meta>,
}Expand description
Represents in-progress answers for a given form spec version.
Fields§
§form_id: String§spec_version: String§answers: Value§meta: Option<Meta>Implementations§
Source§impl AnswerSet
impl AnswerSet
Sourcepub fn new(form_id: impl Into<String>, spec_version: impl Into<String>) -> Self
pub fn new(form_id: impl Into<String>, spec_version: impl Into<String>) -> Self
Creates a fresh empty answer set for a form.
Sourcepub fn to_cbor(&self) -> Result<Vec<u8>, Error>
pub fn to_cbor(&self) -> Result<Vec<u8>, Error>
Serializes the answers set as canonical CBOR bytes.
Sourcepub fn to_json_pretty(&self) -> Result<String, Error>
pub fn to_json_pretty(&self) -> Result<String, Error>
Serializes the answers set as indented JSON for debugging.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AnswerSet
impl<'de> Deserialize<'de> for AnswerSet
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 JsonSchema for AnswerSet
impl JsonSchema for AnswerSet
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for AnswerSet
Auto Trait Implementations§
impl Freeze for AnswerSet
impl RefUnwindSafe for AnswerSet
impl Send for AnswerSet
impl Sync for AnswerSet
impl Unpin for AnswerSet
impl UnwindSafe for AnswerSet
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