pub enum AgentState {
Discovery,
Working,
UnitTesting,
Finished,
}
Expand description
Represents the various states an agent can be in during its workflow.
§Variants
Discovery
: The agent is gathering initial information or requirements.Working
: The agent is actively performing tasks related to the project.UnitTesting
: The agent is performing tests on the results or validating its work.Finished
: The agent has completed its tasks.
Variants§
Trait Implementations§
source§impl Debug for AgentState
impl Debug for AgentState
source§impl PartialEq for AgentState
impl PartialEq for AgentState
impl StructuralPartialEq for AgentState
Auto Trait Implementations§
impl Freeze for AgentState
impl RefUnwindSafe for AgentState
impl Send for AgentState
impl Sync for AgentState
impl Unpin for AgentState
impl UnwindSafe for AgentState
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