pub struct GlobalDataQuality {
pub total_session_files: usize,
pub total_agent_files: usize,
pub orphan_agents: usize,
pub total_valid_turns: usize,
pub total_skipped: usize,
pub time_range: Option<(DateTime<Utc>, DateTime<Utc>)>,
}Expand description
Quality metrics aggregated across all session files.
Fields§
§total_session_files: usize§total_agent_files: usize§orphan_agents: usize§total_valid_turns: usize§total_skipped: usize§time_range: Option<(DateTime<Utc>, DateTime<Utc>)>Trait Implementations§
Source§impl Clone for GlobalDataQuality
impl Clone for GlobalDataQuality
Source§fn clone(&self) -> GlobalDataQuality
fn clone(&self) -> GlobalDataQuality
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 GlobalDataQuality
impl Debug for GlobalDataQuality
Source§impl Default for GlobalDataQuality
impl Default for GlobalDataQuality
Source§fn default() -> GlobalDataQuality
fn default() -> GlobalDataQuality
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GlobalDataQuality
impl RefUnwindSafe for GlobalDataQuality
impl Send for GlobalDataQuality
impl Sync for GlobalDataQuality
impl Unpin for GlobalDataQuality
impl UnsafeUnpin for GlobalDataQuality
impl UnwindSafe for GlobalDataQuality
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