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