pub struct HandoffResult {
pub path: PathBuf,
pub completed_tasks: usize,
pub open_tasks: usize,
pub has_continuation_prompt: bool,
}Expand description
Result of generating a handoff file.
Fields§
§path: PathBufPath to the generated handoff file.
completed_tasks: usizeNumber of completed tasks mentioned.
open_tasks: usizeNumber of open tasks mentioned.
has_continuation_prompt: boolWhether a continuation prompt was included.
Trait Implementations§
Source§impl Clone for HandoffResult
impl Clone for HandoffResult
Source§fn clone(&self) -> HandoffResult
fn clone(&self) -> HandoffResult
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 HandoffResult
impl RefUnwindSafe for HandoffResult
impl Send for HandoffResult
impl Sync for HandoffResult
impl Unpin for HandoffResult
impl UnsafeUnpin for HandoffResult
impl UnwindSafe for HandoffResult
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