pub struct CreateFlowTemplateRequest {
pub compatible_namespace_version: Option<i64>,
pub definition: DefinitionDocument,
}
Fields§
§compatible_namespace_version: Option<i64>
The namespace version in which the workflow is to be created.
If no value is specified, the latest version is used by default.
definition: DefinitionDocument
The workflow DefinitionDocument
.
Trait Implementations§
Source§impl Clone for CreateFlowTemplateRequest
impl Clone for CreateFlowTemplateRequest
Source§fn clone(&self) -> CreateFlowTemplateRequest
fn clone(&self) -> CreateFlowTemplateRequest
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 CreateFlowTemplateRequest
impl Debug for CreateFlowTemplateRequest
Source§impl Default for CreateFlowTemplateRequest
impl Default for CreateFlowTemplateRequest
Source§fn default() -> CreateFlowTemplateRequest
fn default() -> CreateFlowTemplateRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateFlowTemplateRequest
Auto Trait Implementations§
impl Freeze for CreateFlowTemplateRequest
impl RefUnwindSafe for CreateFlowTemplateRequest
impl Send for CreateFlowTemplateRequest
impl Sync for CreateFlowTemplateRequest
impl Unpin for CreateFlowTemplateRequest
impl UnwindSafe for CreateFlowTemplateRequest
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