pub struct Task {
pub id: Uuid,
pub team_id: String,
pub title: String,
pub state: TaskState,
pub owner: String,
pub parent_task_id: Option<Uuid>,
pub requirement_id: Option<String>,
pub epic_id: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Expand description
A unit of team-scoped work with traceability links.
Fields§
§id: UuidUnique task identifier.
team_id: StringTeam this task belongs to.
title: StringHuman-readable title.
state: TaskStateCurrent lifecycle state.
owner: StringAgent name that owns this task.
parent_task_id: Option<Uuid>Optional parent task for hierarchical decomposition.
requirement_id: Option<String>Optional traceability link to a requirements system.
epic_id: Option<String>Optional epic identifier.
created_at: DateTime<Utc>When the task was created.
updated_at: DateTime<Utc>When the task was last updated.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
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
impl Eq for Task
impl StructuralPartialEq for Task
Auto Trait Implementations§
impl Freeze for Task
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnsafeUnpin for Task
impl UnwindSafe for Task
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