pub enum AgentArchetype {
Steady,
Explorer,
Volatile,
Deep,
Balanced,
}Expand description
Topological archetype of an agent’s behavior pattern.
Variants§
Steady
Single persistent cluster — stable, predictable behavior.
Explorer
Many short-lived loops — exploration-heavy, wandering.
Volatile
Many disconnected components — volatile, switching between modes.
Deep
Long-lived higher-dimensional features — complex, structured behavior.
Balanced
Mix of features — no dominant topological signature.
Trait Implementations§
Source§impl Clone for AgentArchetype
impl Clone for AgentArchetype
Source§fn clone(&self) -> AgentArchetype
fn clone(&self) -> AgentArchetype
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 AgentArchetype
impl Debug for AgentArchetype
Source§impl<'de> Deserialize<'de> for AgentArchetype
impl<'de> Deserialize<'de> for AgentArchetype
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AgentArchetype
impl Display for AgentArchetype
Source§impl PartialEq for AgentArchetype
impl PartialEq for AgentArchetype
Source§fn eq(&self, other: &AgentArchetype) -> bool
fn eq(&self, other: &AgentArchetype) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentArchetype
impl Serialize for AgentArchetype
impl StructuralPartialEq for AgentArchetype
Auto Trait Implementations§
impl Freeze for AgentArchetype
impl RefUnwindSafe for AgentArchetype
impl Send for AgentArchetype
impl Sync for AgentArchetype
impl Unpin for AgentArchetype
impl UnsafeUnpin for AgentArchetype
impl UnwindSafe for AgentArchetype
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