pub enum SoloSignal {
Done,
Redo,
None,
}Expand description
Solo-compatible signals in agent output.
<solo:done/> = stage complete, move to next
<solo:redo/> = go back to previous stage (e.g. review found issues)
Variants§
Trait Implementations§
Source§impl Clone for SoloSignal
impl Clone for SoloSignal
Source§fn clone(&self) -> SoloSignal
fn clone(&self) -> SoloSignal
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 moreSource§impl Debug for SoloSignal
impl Debug for SoloSignal
Source§impl PartialEq for SoloSignal
impl PartialEq for SoloSignal
impl StructuralPartialEq for SoloSignal
Auto Trait Implementations§
impl Freeze for SoloSignal
impl RefUnwindSafe for SoloSignal
impl Send for SoloSignal
impl Sync for SoloSignal
impl Unpin for SoloSignal
impl UnsafeUnpin for SoloSignal
impl UnwindSafe for SoloSignal
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