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