pub struct ReplaySummary {
pub run_id: String,
pub event_count: usize,
pub tool_call_count: usize,
pub final_state: State,
pub event_hash: String,
pub replay_safe: bool,
pub artifact_count: usize,
pub media_artifact_count: usize,
pub stream_checkpoint_count: usize,
}Fields§
§run_id: String§event_count: usize§tool_call_count: usize§final_state: State§event_hash: String§replay_safe: bool§artifact_count: usize§media_artifact_count: usize§stream_checkpoint_count: usizeTrait Implementations§
Source§impl Clone for ReplaySummary
impl Clone for ReplaySummary
Source§fn clone(&self) -> ReplaySummary
fn clone(&self) -> ReplaySummary
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 moreAuto Trait Implementations§
impl Freeze for ReplaySummary
impl RefUnwindSafe for ReplaySummary
impl Send for ReplaySummary
impl Sync for ReplaySummary
impl Unpin for ReplaySummary
impl UnsafeUnpin for ReplaySummary
impl UnwindSafe for ReplaySummary
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