pub struct TaskHit {
pub task_id: u64,
pub title: String,
pub status: String,
pub receipt: Option<String>,
pub evidence_paths: Vec<String>,
}Expand description
A task matched by ask. The receipt is the point — it is where a finished
task records what it did and how it was verified.
Fields§
§task_id: u64§title: String§status: String§receipt: Option<String>§evidence_paths: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskHit
impl RefUnwindSafe for TaskHit
impl Send for TaskHit
impl Sync for TaskHit
impl Unpin for TaskHit
impl UnsafeUnpin for TaskHit
impl UnwindSafe for TaskHit
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