pub struct QAFlowSpec {
pub id: String,
pub title: String,
pub version: String,
pub entry: StepId,
pub steps: BTreeMap<StepId, StepSpec>,
pub policies: Option<FlowPolicy>,
}Expand description
QAFlow: directed graph of steps executed inside the wizard.
Fields§
§id: String§title: String§version: String§entry: StepId§steps: BTreeMap<StepId, StepSpec>§policies: Option<FlowPolicy>Trait Implementations§
Source§impl Clone for QAFlowSpec
impl Clone for QAFlowSpec
Source§fn clone(&self) -> QAFlowSpec
fn clone(&self) -> QAFlowSpec
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 QAFlowSpec
impl Debug for QAFlowSpec
Source§impl<'de> Deserialize<'de> for QAFlowSpec
impl<'de> Deserialize<'de> for QAFlowSpec
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 QAFlowSpec
impl JsonSchema for QAFlowSpec
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 moreSource§impl PartialEq for QAFlowSpec
impl PartialEq for QAFlowSpec
Source§impl Serialize for QAFlowSpec
impl Serialize for QAFlowSpec
impl StructuralPartialEq for QAFlowSpec
Auto Trait Implementations§
impl Freeze for QAFlowSpec
impl RefUnwindSafe for QAFlowSpec
impl Send for QAFlowSpec
impl Sync for QAFlowSpec
impl Unpin for QAFlowSpec
impl UnwindSafe for QAFlowSpec
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