pub struct StrayWritesReport {
pub generated: String,
pub iteration: u32,
pub totals: Totals,
pub runs: Vec<RunReport>,
pub invocations_inspected: usize,
}Expand description
The full stray-writes.json report.
Fields§
§generated: String§iteration: u32§totals: Totals§runs: Vec<RunReport>§invocations_inspected: usizeHow many transcript tool-calls were actually examined across every run.
Zero means nothing was inspected — a clean totals is then unverifiable,
not a pass. In-memory only; never serialized into stray-writes.json.
Trait Implementations§
Source§impl Clone for StrayWritesReport
impl Clone for StrayWritesReport
Source§fn clone(&self) -> StrayWritesReport
fn clone(&self) -> StrayWritesReport
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 StrayWritesReport
impl Debug for StrayWritesReport
impl Eq for StrayWritesReport
Source§impl PartialEq for StrayWritesReport
impl PartialEq for StrayWritesReport
Source§fn eq(&self, other: &StrayWritesReport) -> bool
fn eq(&self, other: &StrayWritesReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StrayWritesReport
impl Serialize for StrayWritesReport
impl StructuralPartialEq for StrayWritesReport
Auto Trait Implementations§
impl Freeze for StrayWritesReport
impl RefUnwindSafe for StrayWritesReport
impl Send for StrayWritesReport
impl Sync for StrayWritesReport
impl Unpin for StrayWritesReport
impl UnsafeUnpin for StrayWritesReport
impl UnwindSafe for StrayWritesReport
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.