pub struct DreamTaskState {
pub task_id: String,
pub sessions_reviewing: usize,
pub files_touched: Vec<String>,
pub status: DreamTaskStatus,
}Expand description
State for a running dream task.
Fields§
§task_id: String§sessions_reviewing: usize§files_touched: Vec<String>§status: DreamTaskStatusTrait Implementations§
Source§impl Clone for DreamTaskState
impl Clone for DreamTaskState
Source§fn clone(&self) -> DreamTaskState
fn clone(&self) -> DreamTaskState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DreamTaskState
impl RefUnwindSafe for DreamTaskState
impl Send for DreamTaskState
impl Sync for DreamTaskState
impl Unpin for DreamTaskState
impl UnsafeUnpin for DreamTaskState
impl UnwindSafe for DreamTaskState
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