pub struct FileEvents {
pub model: Option<String>,
pub cwd: Option<String>,
pub events: Vec<(f64, TurnMetrics)>,
}Expand description
One transcript file’s per-turn events plus its resolved model/cwd.
Fields§
§model: Option<String>§cwd: Option<String>§events: Vec<(f64, TurnMetrics)>(epoch seconds, metrics) — sorted by ts inside split_logical_sessions.
Trait Implementations§
Source§impl Clone for FileEvents
impl Clone for FileEvents
Source§fn clone(&self) -> FileEvents
fn clone(&self) -> FileEvents
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 FileEvents
impl Debug for FileEvents
Source§impl Default for FileEvents
impl Default for FileEvents
Source§fn default() -> FileEvents
fn default() -> FileEvents
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileEvents
impl RefUnwindSafe for FileEvents
impl Send for FileEvents
impl Sync for FileEvents
impl Unpin for FileEvents
impl UnsafeUnpin for FileEvents
impl UnwindSafe for FileEvents
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