pub struct UpdateDraftWorkflowMappingParams {
pub id: i64,
pub workflow_name: String,
pub issue_types_workflow_mapping: IssueTypesWorkflowMapping,
}
Expand description
struct for passing parameters to the method update_draft_workflow_mapping
Fields§
§id: i64
The ID of the workflow scheme that the draft belongs to.
workflow_name: String
The name of the workflow.
issue_types_workflow_mapping: IssueTypesWorkflowMapping
Trait Implementations§
Source§impl Clone for UpdateDraftWorkflowMappingParams
impl Clone for UpdateDraftWorkflowMappingParams
Source§fn clone(&self) -> UpdateDraftWorkflowMappingParams
fn clone(&self) -> UpdateDraftWorkflowMappingParams
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 Default for UpdateDraftWorkflowMappingParams
impl Default for UpdateDraftWorkflowMappingParams
Source§fn default() -> UpdateDraftWorkflowMappingParams
fn default() -> UpdateDraftWorkflowMappingParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateDraftWorkflowMappingParams
impl RefUnwindSafe for UpdateDraftWorkflowMappingParams
impl Send for UpdateDraftWorkflowMappingParams
impl Sync for UpdateDraftWorkflowMappingParams
impl Unpin for UpdateDraftWorkflowMappingParams
impl UnwindSafe for UpdateDraftWorkflowMappingParams
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