pub struct DeleteWorkflowMappingParams {
pub id: i64,
pub workflow_name: String,
pub update_draft_if_needed: Option<bool>,
}Expand description
struct for passing parameters to the method delete_workflow_mapping
Fields§
§id: i64The ID of the workflow scheme.
workflow_name: StringThe name of the workflow.
update_draft_if_needed: Option<bool>Set to true to create or update the draft of a workflow scheme and delete the mapping from the draft, when the workflow scheme cannot be edited. Defaults to false.
Trait Implementations§
Source§impl Clone for DeleteWorkflowMappingParams
impl Clone for DeleteWorkflowMappingParams
Source§fn clone(&self) -> DeleteWorkflowMappingParams
fn clone(&self) -> DeleteWorkflowMappingParams
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 DeleteWorkflowMappingParams
impl Debug for DeleteWorkflowMappingParams
Source§impl Default for DeleteWorkflowMappingParams
impl Default for DeleteWorkflowMappingParams
Source§fn default() -> DeleteWorkflowMappingParams
fn default() -> DeleteWorkflowMappingParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteWorkflowMappingParams
impl RefUnwindSafe for DeleteWorkflowMappingParams
impl Send for DeleteWorkflowMappingParams
impl Sync for DeleteWorkflowMappingParams
impl Unpin for DeleteWorkflowMappingParams
impl UnwindSafe for DeleteWorkflowMappingParams
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