pub struct GetDefaultWorkflowParams {
pub id: i64,
pub return_draft_if_exists: Option<bool>,
}Expand description
struct for passing parameters to the method get_default_workflow
Fields§
§id: i64The ID of the workflow scheme.
return_draft_if_exists: Option<bool>Set to true to return the default workflow for the workflow scheme’s draft rather than scheme itself. If the workflow scheme does not have a draft, then the default workflow for the workflow scheme is returned.
Trait Implementations§
Source§impl Clone for GetDefaultWorkflowParams
impl Clone for GetDefaultWorkflowParams
Source§fn clone(&self) -> GetDefaultWorkflowParams
fn clone(&self) -> GetDefaultWorkflowParams
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 GetDefaultWorkflowParams
impl Debug for GetDefaultWorkflowParams
Source§impl Default for GetDefaultWorkflowParams
impl Default for GetDefaultWorkflowParams
Source§fn default() -> GetDefaultWorkflowParams
fn default() -> GetDefaultWorkflowParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetDefaultWorkflowParams
impl RefUnwindSafe for GetDefaultWorkflowParams
impl Send for GetDefaultWorkflowParams
impl Sync for GetDefaultWorkflowParams
impl Unpin for GetDefaultWorkflowParams
impl UnwindSafe for GetDefaultWorkflowParams
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