pub struct DeleteDefaultWorkflowParams {
pub id: i64,
pub update_draft_if_needed: Option<bool>,
}Expand description
struct for passing parameters to the method delete_default_workflow
Fields§
§id: i64The ID of the workflow scheme.
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 DeleteDefaultWorkflowParams
impl Clone for DeleteDefaultWorkflowParams
Source§fn clone(&self) -> DeleteDefaultWorkflowParams
fn clone(&self) -> DeleteDefaultWorkflowParams
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 DeleteDefaultWorkflowParams
impl Debug for DeleteDefaultWorkflowParams
Source§impl Default for DeleteDefaultWorkflowParams
impl Default for DeleteDefaultWorkflowParams
Source§fn default() -> DeleteDefaultWorkflowParams
fn default() -> DeleteDefaultWorkflowParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteDefaultWorkflowParams
impl RefUnwindSafe for DeleteDefaultWorkflowParams
impl Send for DeleteDefaultWorkflowParams
impl Sync for DeleteDefaultWorkflowParams
impl Unpin for DeleteDefaultWorkflowParams
impl UnwindSafe for DeleteDefaultWorkflowParams
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