pub struct Task {
pub id: String,
pub title: String,
pub description: Option<String>,
pub priority: Option<String>,
pub duration: Option<String>,
pub difficulty: Option<String>,
pub crate_name: Option<String>,
pub issue: Option<u32>,
}Expand description
Individual task within a phase
Fields§
§id: StringTask identifier (e.g., “F.1”, “H.2”)
title: StringTask title
description: Option<String>Task description
priority: Option<String>Priority level (P0, P1, P2)
duration: Option<String>Estimated duration
difficulty: Option<String>Difficulty level (Good First Issue, Intermediate, Advanced)
crate_name: Option<String>Crate affected
issue: Option<u32>GitHub issue number
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
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