pub struct AggregateInput {
pub source: String,
pub run_id: String,
pub bench_name: String,
pub host: HostInfo,
pub runner: AggregateRunnerMeta,
pub status: MetricStatus,
pub reasons: Vec<String>,
}Fields§
§source: StringInput source path used to load this receipt.
run_id: String§bench_name: String§host: HostInfo§runner: AggregateRunnerMeta§status: MetricStatusInput status derived from run samples.
reasons: Vec<String>Optional reasons when status is not pass.
Trait Implementations§
Source§impl Clone for AggregateInput
impl Clone for AggregateInput
Source§fn clone(&self) -> AggregateInput
fn clone(&self) -> AggregateInput
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 AggregateInput
impl Debug for AggregateInput
Source§impl<'de> Deserialize<'de> for AggregateInput
impl<'de> Deserialize<'de> for AggregateInput
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 AggregateInput
impl JsonSchema for AggregateInput
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 AggregateInput
impl PartialEq for AggregateInput
Source§fn eq(&self, other: &AggregateInput) -> bool
fn eq(&self, other: &AggregateInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AggregateInput
impl Serialize for AggregateInput
impl StructuralPartialEq for AggregateInput
Auto Trait Implementations§
impl Freeze for AggregateInput
impl RefUnwindSafe for AggregateInput
impl Send for AggregateInput
impl Sync for AggregateInput
impl Unpin for AggregateInput
impl UnsafeUnpin for AggregateInput
impl UnwindSafe for AggregateInput
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