pub struct AgentFrameStatus {
pub measured_time_ms: f32,
}Expand description
Per-frame execution metrics for one agent, measured and written by the
scheduler — agents hold no per-frame counters of their own. An agent
reads its own slot in report_status to derive health_score from the
GORNA time budget it retains.
Fields§
§measured_time_ms: f32Wall-clock duration of the agent’s last execute, in milliseconds.
0.0 means the agent did not run last frame (skipped or not yet scheduled).
Trait Implementations§
Source§impl Clone for AgentFrameStatus
impl Clone for AgentFrameStatus
Source§fn clone(&self) -> AgentFrameStatus
fn clone(&self) -> AgentFrameStatus
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 AgentFrameStatus
impl Debug for AgentFrameStatus
Source§impl Default for AgentFrameStatus
impl Default for AgentFrameStatus
Source§fn default() -> AgentFrameStatus
fn default() -> AgentFrameStatus
Returns the “default value” for a type. Read more
impl Copy for AgentFrameStatus
Auto Trait Implementations§
impl Freeze for AgentFrameStatus
impl RefUnwindSafe for AgentFrameStatus
impl Send for AgentFrameStatus
impl Sync for AgentFrameStatus
impl Unpin for AgentFrameStatus
impl UnsafeUnpin for AgentFrameStatus
impl UnwindSafe for AgentFrameStatus
Blanket Implementations§
Source§impl<T> AppLifecycle for Twhere
T: ?Sized,
impl<T> AppLifecycle for Twhere
T: ?Sized,
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