pub struct ExecutionSummary {
pub run_id: String,
pub duration_ms: u64,
pub peak_worker_memory_bytes: u64,
pub completed_work_units: u64,
pub checkpoint_hits: u64,
pub checkpoints_written: u64,
pub measured_artifacts: u64,
pub artifact_duration_p50_ms: u64,
pub artifact_duration_p95_ms: u64,
pub artifact_duration_p99_ms: u64,
}Expand description
Observable resource accounting attached to a completed scan or sync pass.
Fields§
§run_id: StringUnique identifier assigned by the supervisor to this pass.
duration_ms: u64Monotonic wall-clock duration observed by the supervisor.
peak_worker_memory_bytes: u64Largest combined resident set observed for the worker process tree.
completed_work_units: u64Number of completed units reported through the progress protocol.
checkpoint_hits: u64Number of deterministic checkpoint records reused by this pass.
checkpoints_written: u64Number of complete deterministic checkpoint records written by this pass.
measured_artifacts: u64Number of artifact-extractor invocations measured by the worker.
artifact_duration_p50_ms: u64Median artifact-extractor duration in milliseconds.
artifact_duration_p95_ms: u6495th-percentile artifact-extractor duration in milliseconds.
artifact_duration_p99_ms: u6499th-percentile artifact-extractor duration in milliseconds.
Trait Implementations§
Source§impl Clone for ExecutionSummary
impl Clone for ExecutionSummary
Source§fn clone(&self) -> ExecutionSummary
fn clone(&self) -> ExecutionSummary
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 ExecutionSummary
impl Debug for ExecutionSummary
Source§impl Default for ExecutionSummary
impl Default for ExecutionSummary
Source§fn default() -> ExecutionSummary
fn default() -> ExecutionSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionSummary
impl<'de> Deserialize<'de> for ExecutionSummary
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
impl Eq for ExecutionSummary
Source§impl JsonSchema for ExecutionSummary
impl JsonSchema for ExecutionSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ExecutionSummary
impl PartialEq for ExecutionSummary
Source§impl Serialize for ExecutionSummary
impl Serialize for ExecutionSummary
impl StructuralPartialEq for ExecutionSummary
Auto Trait Implementations§
impl Freeze for ExecutionSummary
impl RefUnwindSafe for ExecutionSummary
impl Send for ExecutionSummary
impl Sync for ExecutionSummary
impl Unpin for ExecutionSummary
impl UnsafeUnpin for ExecutionSummary
impl UnwindSafe for ExecutionSummary
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.