pub struct AnswerDocument {
pub wizard_id: String,
pub schema_id: String,
pub schema_version: Version,
pub locale: String,
pub answers: BTreeMap<String, Value>,
pub locks: BTreeMap<String, Value>,
}Fields§
§wizard_id: String§schema_id: String§schema_version: Version§locale: String§answers: BTreeMap<String, Value>§locks: BTreeMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for AnswerDocument
impl Clone for AnswerDocument
Source§fn clone(&self) -> AnswerDocument
fn clone(&self) -> AnswerDocument
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 AnswerDocument
impl Debug for AnswerDocument
Source§impl<'de> Deserialize<'de> for AnswerDocument
impl<'de> Deserialize<'de> for AnswerDocument
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 AnswerDocument
impl PartialEq for AnswerDocument
Source§impl Serialize for AnswerDocument
impl Serialize for AnswerDocument
impl Eq for AnswerDocument
impl StructuralPartialEq for AnswerDocument
Auto Trait Implementations§
impl Freeze for AnswerDocument
impl RefUnwindSafe for AnswerDocument
impl Send for AnswerDocument
impl Sync for AnswerDocument
impl Unpin for AnswerDocument
impl UnsafeUnpin for AnswerDocument
impl UnwindSafe for AnswerDocument
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.