pub struct GetWorkflowSchemeParams {
pub id: i64,
pub return_draft_if_exists: Option<bool>,
}
Expand description
struct for passing parameters to the method get_workflow_scheme
Fields§
§id: i64
The ID of the workflow scheme. Find this ID by editing the desired workflow scheme in Jira. The ID is shown in the URL as schemeId
. For example, schemeId=10301.
return_draft_if_exists: Option<bool>
Returns the workflow scheme’s draft rather than scheme itself, if set to true. If the workflow scheme does not have a draft, then the workflow scheme is returned.
Trait Implementations§
Source§impl Clone for GetWorkflowSchemeParams
impl Clone for GetWorkflowSchemeParams
Source§fn clone(&self) -> GetWorkflowSchemeParams
fn clone(&self) -> GetWorkflowSchemeParams
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 GetWorkflowSchemeParams
impl Debug for GetWorkflowSchemeParams
Source§impl Default for GetWorkflowSchemeParams
impl Default for GetWorkflowSchemeParams
Source§fn default() -> GetWorkflowSchemeParams
fn default() -> GetWorkflowSchemeParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetWorkflowSchemeParams
impl RefUnwindSafe for GetWorkflowSchemeParams
impl Send for GetWorkflowSchemeParams
impl Sync for GetWorkflowSchemeParams
impl Unpin for GetWorkflowSchemeParams
impl UnwindSafe for GetWorkflowSchemeParams
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