pub struct TaskDetail {
pub summary: TaskSummary,
pub body: String,
pub depends_on: Vec<String>,
pub parent: Option<String>,
pub assignee: String,
pub created: DateTime<Utc>,
pub updated: DateTime<Utc>,
}Expand description
Full task projection used by show/get_task responses.
Fields§
§summary: TaskSummary§body: String§depends_on: Vec<String>§parent: Option<String>§assignee: String§created: DateTime<Utc>§updated: DateTime<Utc>Trait Implementations§
Source§impl Debug for TaskDetail
impl Debug for TaskDetail
Auto Trait Implementations§
impl Freeze for TaskDetail
impl RefUnwindSafe for TaskDetail
impl Send for TaskDetail
impl Sync for TaskDetail
impl Unpin for TaskDetail
impl UnsafeUnpin for TaskDetail
impl UnwindSafe for TaskDetail
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