pub enum AgentAction {
Continue,
Converging,
HoldSteady,
WidenFunnel,
CommitChirality,
Diverging,
Satisfied,
}Expand description
Actions the agent can recommend
Variants§
Continue
Keep going, everything normal
Converging
Converging well, maintain course
HoldSteady
Almost snapped, hold steady
WidenFunnel
Anomaly detected, widen funnel
CommitChirality
Chirality just locked, commit to chamber
Diverging
Stuck, not converging — try different approach
Satisfied
Crystallized — constraint satisfied
Trait Implementations§
Source§impl Clone for AgentAction
impl Clone for AgentAction
Source§fn clone(&self) -> AgentAction
fn clone(&self) -> AgentAction
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 moreSource§impl Debug for AgentAction
impl Debug for AgentAction
Source§impl Hash for AgentAction
impl Hash for AgentAction
Source§impl PartialEq for AgentAction
impl PartialEq for AgentAction
Source§fn eq(&self, other: &AgentAction) -> bool
fn eq(&self, other: &AgentAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AgentAction
impl Eq for AgentAction
impl StructuralPartialEq for AgentAction
Auto Trait Implementations§
impl Freeze for AgentAction
impl RefUnwindSafe for AgentAction
impl Send for AgentAction
impl Sync for AgentAction
impl Unpin for AgentAction
impl UnsafeUnpin for AgentAction
impl UnwindSafe for AgentAction
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