pub struct JiraFrontmatter {
pub instance: String,
pub key: String,
pub project: Option<String>,
pub summary: String,
pub status: Option<String>,
pub issue_type: Option<String>,
pub assignee: Option<String>,
pub priority: Option<String>,
pub labels: Vec<String>,
}Expand description
JIRA-specific frontmatter fields.
Fields§
§instance: StringAtlassian instance base URL.
key: StringJIRA issue key (e.g., “PROJ-123”). Empty when creating a new issue.
project: Option<String>Project key (e.g., “PROJ”). Used when creating issues without an existing key.
summary: StringIssue summary (title).
status: Option<String>Issue status name.
issue_type: Option<String>Issue type name (Bug, Story, Task, etc.).
assignee: Option<String>Assignee display name.
priority: Option<String>Priority name.
labels: Vec<String>Labels applied to the issue.
Trait Implementations§
Source§impl Clone for JiraFrontmatter
impl Clone for JiraFrontmatter
Source§fn clone(&self) -> JiraFrontmatter
fn clone(&self) -> JiraFrontmatter
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 JiraFrontmatter
impl Debug for JiraFrontmatter
Source§impl<'de> Deserialize<'de> for JiraFrontmatter
impl<'de> Deserialize<'de> for JiraFrontmatter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JiraFrontmatter
impl RefUnwindSafe for JiraFrontmatter
impl Send for JiraFrontmatter
impl Sync for JiraFrontmatter
impl Unpin for JiraFrontmatter
impl UnsafeUnpin for JiraFrontmatter
impl UnwindSafe for JiraFrontmatter
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