pub struct StaleTask {
pub task_id: String,
pub title: String,
pub last_event_at: String,
pub days_idle: i64,
}Expand description
One row of the stale-task report: an open task whose last event crossed the inactivity threshold.
Fields§
§task_id: String§title: String§last_event_at: String§days_idle: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for StaleTask
impl RefUnwindSafe for StaleTask
impl Send for StaleTask
impl Sync for StaleTask
impl Unpin for StaleTask
impl UnsafeUnpin for StaleTask
impl UnwindSafe for StaleTask
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