pub struct AgentRow {
pub role: String,
pub completions: i64,
pub failures: i64,
pub restarts: i64,
pub total_cycle_secs: i64,
pub idle_pct: Option<f64>,
}Expand description
Per-agent row in the dashboard.
Fields§
§role: String§completions: i64§failures: i64§restarts: i64§total_cycle_secs: i64§idle_pct: Option<f64>Trait Implementations§
impl StructuralPartialEq for AgentRow
Auto Trait Implementations§
impl Freeze for AgentRow
impl RefUnwindSafe for AgentRow
impl Send for AgentRow
impl Sync for AgentRow
impl Unpin for AgentRow
impl UnsafeUnpin for AgentRow
impl UnwindSafe for AgentRow
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