#[non_exhaustive]pub struct DownstreamOptions {
pub min_stage_samples: usize,
pub blocking_correlated_stage_patterns: Vec<String>,
pub blocking_correlation_score_margin: u8,
}Expand description
Downstream-stage suspect thresholds and blocking-correlation heuristics.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.min_stage_samples: usizeMinimum stage sample count required before downstream-stage suspect ranking can trigger.
Stage-name substrings used to detect downstream evidence that may correlate with blocking work.
blocking_correlation_score_margin: u8Minimum score margin required before favoring downstream-stage suspects over blocking-correlated interpretations.
Trait Implementations§
Source§impl Clone for DownstreamOptions
impl Clone for DownstreamOptions
Source§fn clone(&self) -> DownstreamOptions
fn clone(&self) -> DownstreamOptions
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 DownstreamOptions
impl Debug for DownstreamOptions
Source§impl Default for DownstreamOptions
impl Default for DownstreamOptions
impl Eq for DownstreamOptions
Source§impl PartialEq for DownstreamOptions
impl PartialEq for DownstreamOptions
Source§fn eq(&self, other: &DownstreamOptions) -> bool
fn eq(&self, other: &DownstreamOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DownstreamOptions
impl Serialize for DownstreamOptions
impl StructuralPartialEq for DownstreamOptions
Auto Trait Implementations§
impl Freeze for DownstreamOptions
impl RefUnwindSafe for DownstreamOptions
impl Send for DownstreamOptions
impl Sync for DownstreamOptions
impl Unpin for DownstreamOptions
impl UnsafeUnpin for DownstreamOptions
impl UnwindSafe for DownstreamOptions
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<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.