pub enum ActivityState {
Idle,
Planning,
PreparingFreshExecutionThread,
RestoringApprovedPlan,
Building,
StartingBuild,
}Variants§
Idle
Planning
The agent is working inside the plan workflow (research/synthesis).
PreparingFreshExecutionThread
RestoringApprovedPlan
Building
The agent is executing an approved plan.
StartingBuild
Implementations§
Trait Implementations§
Source§impl Clone for ActivityState
impl Clone for ActivityState
Source§fn clone(&self) -> ActivityState
fn clone(&self) -> ActivityState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ActivityState
Source§impl Debug for ActivityState
impl Debug for ActivityState
Source§impl Default for ActivityState
impl Default for ActivityState
Source§fn default() -> ActivityState
fn default() -> ActivityState
Returns the “default value” for a type. Read more
impl Eq for ActivityState
Source§impl PartialEq for ActivityState
impl PartialEq for ActivityState
impl StructuralPartialEq for ActivityState
Auto Trait Implementations§
impl Freeze for ActivityState
impl RefUnwindSafe for ActivityState
impl Send for ActivityState
impl Sync for ActivityState
impl Unpin for ActivityState
impl UnsafeUnpin for ActivityState
impl UnwindSafe for ActivityState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.