pub struct TaskFile {
pub id: String,
pub subject: String,
pub description: Option<String>,
pub active_form: Option<String>,
pub status: TaskStatus,
pub owner: Option<String>,
pub blocks: Vec<String>,
pub blocked_by: Vec<String>,
pub metadata: Option<Value>,
}Expand description
A task persisted as {id}.json in the tasks directory.
Fields§
§id: String§subject: String§description: Option<String>§active_form: Option<String>§status: TaskStatus§owner: Option<String>§blocks: Vec<String>Task IDs that this task blocks (they cannot start until this completes).
blocked_by: Vec<String>Task IDs that must complete before this task can start.
metadata: Option<Value>Arbitrary metadata.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TaskFile
impl<'de> Deserialize<'de> for TaskFile
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 TaskFile
impl RefUnwindSafe for TaskFile
impl Send for TaskFile
impl Sync for TaskFile
impl Unpin for TaskFile
impl UnwindSafe for TaskFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more