pub struct GetWorkflowParams {
pub id: i64,
pub workflow_name: Option<String>,
pub return_draft_if_exists: Option<bool>,
}Expand description
struct for passing parameters to the method get_workflow
Fields§
§id: i64The ID of the workflow scheme.
workflow_name: Option<String>The name of a workflow in the scheme. Limits the results to the workflow-issue type mapping for the specified workflow.
return_draft_if_exists: Option<bool>Returns the mapping from the workflow scheme’s draft rather than the workflow scheme, if set to true. If no draft exists, the mapping from the workflow scheme is returned.
Trait Implementations§
Source§impl Clone for GetWorkflowParams
impl Clone for GetWorkflowParams
Source§fn clone(&self) -> GetWorkflowParams
fn clone(&self) -> GetWorkflowParams
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 GetWorkflowParams
impl Debug for GetWorkflowParams
Source§impl Default for GetWorkflowParams
impl Default for GetWorkflowParams
Source§fn default() -> GetWorkflowParams
fn default() -> GetWorkflowParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetWorkflowParams
impl RefUnwindSafe for GetWorkflowParams
impl Send for GetWorkflowParams
impl Sync for GetWorkflowParams
impl Unpin for GetWorkflowParams
impl UnwindSafe for GetWorkflowParams
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