pub struct AgentExportStats {
pub total_trajectories: usize,
pub avg_quality: f32,
pub patterns_learned: usize,
}Expand description
Agent export statistics
Fields§
§total_trajectories: usizeTotal trajectories processed
avg_quality: f32Average quality
patterns_learned: usizePatterns learned locally
Trait Implementations§
Source§impl Clone for AgentExportStats
impl Clone for AgentExportStats
Source§fn clone(&self) -> AgentExportStats
fn clone(&self) -> AgentExportStats
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 AgentExportStats
impl Debug for AgentExportStats
Source§impl Default for AgentExportStats
impl Default for AgentExportStats
Source§fn default() -> AgentExportStats
fn default() -> AgentExportStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentExportStats
impl<'de> Deserialize<'de> for AgentExportStats
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 AgentExportStats
impl RefUnwindSafe for AgentExportStats
impl Send for AgentExportStats
impl Sync for AgentExportStats
impl Unpin for AgentExportStats
impl UnwindSafe for AgentExportStats
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