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