pub struct JiraIssue {
pub key: String,
pub summary: String,
pub description_adf: Option<Value>,
pub status: Option<String>,
pub issue_type: Option<String>,
pub assignee: Option<String>,
pub priority: Option<String>,
pub labels: Vec<String>,
}Expand description
JIRA issue data returned from the REST API.
Fields§
§key: StringIssue key (e.g., “PROJ-123”).
summary: StringIssue summary (title).
description_adf: Option<Value>Issue description as raw ADF JSON (may be null).
status: Option<String>Issue status name.
issue_type: Option<String>Issue type name.
assignee: Option<String>Assignee display name.
priority: Option<String>Priority name.
labels: Vec<String>Labels.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JiraIssue
impl RefUnwindSafe for JiraIssue
impl Send for JiraIssue
impl Sync for JiraIssue
impl Unpin for JiraIssue
impl UnsafeUnpin for JiraIssue
impl UnwindSafe for JiraIssue
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