pub struct AggregateRunnerMeta {
pub label: String,
pub class: Option<String>,
pub lane: Option<String>,
pub weight: Option<f64>,
pub sample_count: Option<u32>,
pub wall_ms_variance: Option<f64>,
pub effective_weight: Option<f64>,
pub outlier_reason: Option<String>,
}Fields§
§label: StringMatrix label for this runner (for example: “ubuntu-x86_64”).
class: Option<String>Optional logical class/tier (for example: “tier1”).
lane: Option<String>Optional benchmark lane/group.
weight: Option<f64>Optional configured runner weight.
sample_count: Option<u32>Number of measured samples considered for runner weighting metadata.
wall_ms_variance: Option<f64>Observed variance of wall_ms across measured samples for this runner.
effective_weight: Option<f64>Effective runner weight after the selected weighting mode is applied.
outlier_reason: Option<String>Optional note when this runner appears substantially noisier than peers.
Trait Implementations§
Source§impl Clone for AggregateRunnerMeta
impl Clone for AggregateRunnerMeta
Source§fn clone(&self) -> AggregateRunnerMeta
fn clone(&self) -> AggregateRunnerMeta
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 AggregateRunnerMeta
impl Debug for AggregateRunnerMeta
Source§impl<'de> Deserialize<'de> for AggregateRunnerMeta
impl<'de> Deserialize<'de> for AggregateRunnerMeta
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
Source§impl JsonSchema for AggregateRunnerMeta
impl JsonSchema for AggregateRunnerMeta
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 AggregateRunnerMeta
impl PartialEq for AggregateRunnerMeta
Source§fn eq(&self, other: &AggregateRunnerMeta) -> bool
fn eq(&self, other: &AggregateRunnerMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AggregateRunnerMeta
impl Serialize for AggregateRunnerMeta
impl StructuralPartialEq for AggregateRunnerMeta
Auto Trait Implementations§
impl Freeze for AggregateRunnerMeta
impl RefUnwindSafe for AggregateRunnerMeta
impl Send for AggregateRunnerMeta
impl Sync for AggregateRunnerMeta
impl Unpin for AggregateRunnerMeta
impl UnsafeUnpin for AggregateRunnerMeta
impl UnwindSafe for AggregateRunnerMeta
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