pub struct Issue {
pub id: String,
pub identifier: String,
pub title: String,
pub description: Option<String>,
pub priority: Option<i32>,
pub state: String,
pub branch_name: Option<String>,
pub url: Option<String>,
pub labels: Vec<String>,
pub blocked_by: Vec<BlockerRef>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
}Expand description
A normalized issue from the tracker, used for orchestration, prompt rendering, and observability output.
Fields§
§id: StringStable tracker-internal ID.
identifier: StringHuman-readable ticket key (e.g. ABC-123).
title: String§description: Option<String>§priority: Option<i32>Lower numbers are higher priority in dispatch sorting.
state: StringCurrent tracker state name.
branch_name: Option<String>Tracker-provided branch metadata if available.
url: Option<String>§labels: Vec<String>Normalized to lowercase.
blocked_by: Vec<BlockerRef>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Issue
impl<'de> Deserialize<'de> for Issue
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 Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnsafeUnpin for Issue
impl UnwindSafe for Issue
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