pub struct CreateIssueInput {
pub fields: CreateIssueFields,
}Expand description
Input for creating an issue.
Fields§
§fields: CreateIssueFieldsImplementations§
Source§impl CreateIssueInput
impl CreateIssueInput
pub fn new( project_key: impl Into<String>, summary: impl Into<String>, issue_type: impl Into<String>, ) -> Self
pub fn description(self, desc: Value) -> Self
pub fn priority(self, priority: impl Into<String>) -> Self
pub fn assignee(self, account_id: impl Into<String>) -> Self
pub fn labels(self, labels: Vec<String>) -> Self
Trait Implementations§
Source§impl Clone for CreateIssueInput
impl Clone for CreateIssueInput
Source§fn clone(&self) -> CreateIssueInput
fn clone(&self) -> CreateIssueInput
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 CreateIssueInput
impl Debug for CreateIssueInput
Auto Trait Implementations§
impl Freeze for CreateIssueInput
impl RefUnwindSafe for CreateIssueInput
impl Send for CreateIssueInput
impl Sync for CreateIssueInput
impl Unpin for CreateIssueInput
impl UnwindSafe for CreateIssueInput
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