pub struct DispatchOverheadReport {
pub batch_direct: MeasurementSummary,
pub batch_tree: MeasurementSummary,
pub batch_delta_ns: f64,
pub per_size: Vec<DispatchSizeSample>,
pub delta_median_ns: f64,
pub delta_mean_ns: f64,
pub delta_min_ns: f64,
pub delta_max_ns: f64,
pub note: String,
}Expand description
Statistical summary of decision-tree dispatch overhead across sizes.
Fields§
§batch_direct: MeasurementSummaryBatch measurement (all sizes in one timed closure) — legacy comparable.
batch_tree: MeasurementSummaryBatch via tree.
batch_delta_ns: f64Batch delta ns (tree − direct medians).
per_size: Vec<DispatchSizeSample>Per-size samples (separate timed campaigns).
delta_median_ns: f64Median of per-size deltas.
delta_mean_ns: f64Mean of per-size deltas.
delta_min_ns: f64Min / max of per-size deltas.
delta_max_ns: f64Max delta.
note: StringHonest note.
Trait Implementations§
Source§impl Clone for DispatchOverheadReport
impl Clone for DispatchOverheadReport
Source§fn clone(&self) -> DispatchOverheadReport
fn clone(&self) -> DispatchOverheadReport
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 DispatchOverheadReport
impl Debug for DispatchOverheadReport
Source§impl<'de> Deserialize<'de> for DispatchOverheadReport
impl<'de> Deserialize<'de> for DispatchOverheadReport
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
Auto Trait Implementations§
impl Freeze for DispatchOverheadReport
impl RefUnwindSafe for DispatchOverheadReport
impl Send for DispatchOverheadReport
impl Sync for DispatchOverheadReport
impl Unpin for DispatchOverheadReport
impl UnsafeUnpin for DispatchOverheadReport
impl UnwindSafe for DispatchOverheadReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more