pub struct InteractionFlowView {
pub session_id: String,
pub revision: u64,
pub step_id: String,
pub content: FlowStepViewContent,
pub values: HashMap<String, Value>,
pub resolutions: Vec<FlowResolutionView>,
pub back_step_id: Option<String>,
pub ready_to_complete: bool,
}Fields§
§session_id: String§revision: u64§step_id: String§content: FlowStepViewContent§values: HashMap<String, Value>§resolutions: Vec<FlowResolutionView>§back_step_id: Option<String>§ready_to_complete: boolTrait Implementations§
Source§impl Clone for InteractionFlowView
impl Clone for InteractionFlowView
Source§fn clone(&self) -> InteractionFlowView
fn clone(&self) -> InteractionFlowView
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 Debug for InteractionFlowView
impl Debug for InteractionFlowView
Source§impl<'de> Deserialize<'de> for InteractionFlowView
impl<'de> Deserialize<'de> for InteractionFlowView
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 InteractionFlowView
impl PartialEq for InteractionFlowView
Source§impl Serialize for InteractionFlowView
impl Serialize for InteractionFlowView
impl StructuralPartialEq for InteractionFlowView
Auto Trait Implementations§
impl Freeze for InteractionFlowView
impl RefUnwindSafe for InteractionFlowView
impl Send for InteractionFlowView
impl Sync for InteractionFlowView
impl Unpin for InteractionFlowView
impl UnsafeUnpin for InteractionFlowView
impl UnwindSafe for InteractionFlowView
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