pub struct AgentStateVector {
pub progress: f32,
pub uncertainty: f32,
pub risk_level: RiskLevel,
pub budget: BudgetState,
pub error_streak: u32,
pub context_pressure: f32,
pub side_effect_pressure: f32,
pub human_dependency: f32,
}Expand description
The agent’s internal health and resource state vector.
Fields§
§progress: f32§uncertainty: f32§risk_level: RiskLevel§budget: BudgetState§error_streak: u32§context_pressure: f32§side_effect_pressure: f32§human_dependency: f32Trait Implementations§
Source§impl Clone for AgentStateVector
impl Clone for AgentStateVector
Source§fn clone(&self) -> AgentStateVector
fn clone(&self) -> AgentStateVector
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 AgentStateVector
impl Debug for AgentStateVector
Source§impl Default for AgentStateVector
impl Default for AgentStateVector
Source§impl<'de> Deserialize<'de> for AgentStateVector
impl<'de> Deserialize<'de> for AgentStateVector
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
Auto Trait Implementations§
impl Freeze for AgentStateVector
impl RefUnwindSafe for AgentStateVector
impl Send for AgentStateVector
impl Sync for AgentStateVector
impl Unpin for AgentStateVector
impl UnsafeUnpin for AgentStateVector
impl UnwindSafe for AgentStateVector
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