pub struct ExampleScenarioProcessBackboneElement {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub modifier_extension: Option<Vec<Extension>>,
pub title: Option<StringDt>,
pub description: Option<MarkdownDt>,
pub pre_conditions: Option<MarkdownDt>,
pub post_conditions: Option<MarkdownDt>,
pub step: Option<Vec<ExampleScenarioProcessStepBackboneElement>>,
}
Fields§
§id: Option<String>
Unique id for inter-element referencing
extension: Option<Vec<Extension>>
Additional content defined by implementations
modifier_extension: Option<Vec<Extension>>
Extensions that cannot be ignored even if unrecognized
title: Option<StringDt>
Label for procss
description: Option<MarkdownDt>
Human-friendly description of the process
pre_conditions: Option<MarkdownDt>
Status before process starts
post_conditions: Option<MarkdownDt>
Status after successful completion
step: Option<Vec<ExampleScenarioProcessStepBackboneElement>>
Event within of the process
Trait Implementations§
Source§impl Clone for ExampleScenarioProcessBackboneElement
impl Clone for ExampleScenarioProcessBackboneElement
Source§fn clone(&self) -> ExampleScenarioProcessBackboneElement
fn clone(&self) -> ExampleScenarioProcessBackboneElement
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 Convert for ExampleScenarioProcessBackboneElement
impl Convert for ExampleScenarioProcessBackboneElement
fn to_integer(&self) -> Result<Integer>
fn to_decimal(&self) -> Result<Decimal>
fn to_strings(&self) -> Result<String>
fn to_datetime(&self) -> Result<DateTime>
fn to_boolean(&self) -> Result<Boolean>
Source§impl Default for ExampleScenarioProcessBackboneElement
impl Default for ExampleScenarioProcessBackboneElement
Source§fn default() -> ExampleScenarioProcessBackboneElement
fn default() -> ExampleScenarioProcessBackboneElement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExampleScenarioProcessBackboneElement
impl<'de> Deserialize<'de> for ExampleScenarioProcessBackboneElement
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Source§impl Executor for ExampleScenarioProcessBackboneElement
impl Executor for ExampleScenarioProcessBackboneElement
fn element(&self, symbol: &String, index: &Option<usize>) -> Result<Collection>
fn to_collection(&self, index: &Option<usize>) -> Collection
fn child(&self, _index: usize) -> Result<Collection>
impl DataType for ExampleScenarioProcessBackboneElement
Auto Trait Implementations§
impl Freeze for ExampleScenarioProcessBackboneElement
impl RefUnwindSafe for ExampleScenarioProcessBackboneElement
impl Send for ExampleScenarioProcessBackboneElement
impl Sync for ExampleScenarioProcessBackboneElement
impl Unpin for ExampleScenarioProcessBackboneElement
impl UnwindSafe for ExampleScenarioProcessBackboneElement
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