#[non_exhaustive]pub struct FlowTemplateDescription {
pub summary: Option<FlowTemplateSummary>,
pub definition: Option<DefinitionDocument>,
pub validated_namespace_version: Option<i64>,
}
Expand description
An object that contains a workflow's definition and summary information.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.summary: Option<FlowTemplateSummary>
An object that contains summary information about a workflow.
definition: Option<DefinitionDocument>
A workflow's definition document.
validated_namespace_version: Option<i64>
The version of the user's namespace against which the workflow was validated. Use this value in your system instance.
Implementations
An object that contains summary information about a workflow.
A workflow's definition document.
The version of the user's namespace against which the workflow was validated. Use this value in your system instance.
Creates a new builder-style object to manufacture FlowTemplateDescription
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for FlowTemplateDescription
impl Send for FlowTemplateDescription
impl Sync for FlowTemplateDescription
impl Unpin for FlowTemplateDescription
impl UnwindSafe for FlowTemplateDescription
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more