pub struct AgentStatsInfo {
pub thread_count: i64,
pub sub_agent_usage_count: i64,
pub last_used_at: Option<DateTime<Utc>>,
}Expand description
Agent statistics for display
Fields§
§thread_count: i64§sub_agent_usage_count: i64§last_used_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for AgentStatsInfo
impl Clone for AgentStatsInfo
Source§fn clone(&self) -> AgentStatsInfo
fn clone(&self) -> AgentStatsInfo
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 AgentStatsInfo
impl Debug for AgentStatsInfo
Source§impl Default for AgentStatsInfo
impl Default for AgentStatsInfo
Source§fn default() -> AgentStatsInfo
fn default() -> AgentStatsInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentStatsInfo
impl<'de> Deserialize<'de> for AgentStatsInfo
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 AgentStatsInfo
impl RefUnwindSafe for AgentStatsInfo
impl Send for AgentStatsInfo
impl Sync for AgentStatsInfo
impl Unpin for AgentStatsInfo
impl UnsafeUnpin for AgentStatsInfo
impl UnwindSafe for AgentStatsInfo
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