pub struct Task {
pub id: String,
pub subject: String,
pub description: String,
pub status: String,
pub active_form: Option<String>,
pub owner: Option<String>,
pub blocks: Vec<String>,
pub blocked_by: Vec<String>,
pub internal: Option<bool>,
}Expand description
A task in the V2 task system
Fields§
§id: String§subject: String§description: String§status: String§active_form: Option<String>§owner: Option<String>§blocks: Vec<String>§blocked_by: Vec<String>§internal: Option<bool>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