pub struct PairedStats {
pub baseline_wall_ms: U64Summary,
pub current_wall_ms: U64Summary,
pub wall_diff_ms: PairedDiffSummary,
pub baseline_max_rss_kb: Option<U64Summary>,
pub current_max_rss_kb: Option<U64Summary>,
pub rss_diff_kb: Option<PairedDiffSummary>,
pub baseline_throughput_per_s: Option<F64Summary>,
pub current_throughput_per_s: Option<F64Summary>,
pub throughput_diff_per_s: Option<PairedDiffSummary>,
}Fields§
§baseline_wall_ms: U64Summary§current_wall_ms: U64Summary§wall_diff_ms: PairedDiffSummary§baseline_max_rss_kb: Option<U64Summary>§current_max_rss_kb: Option<U64Summary>§rss_diff_kb: Option<PairedDiffSummary>§baseline_throughput_per_s: Option<F64Summary>§current_throughput_per_s: Option<F64Summary>§throughput_diff_per_s: Option<PairedDiffSummary>Trait Implementations§
Source§impl Clone for PairedStats
impl Clone for PairedStats
Source§fn clone(&self) -> PairedStats
fn clone(&self) -> PairedStats
Returns a duplicate of the value. Read more
1.0.0 · 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 PairedStats
impl Debug for PairedStats
Source§impl<'de> Deserialize<'de> for PairedStats
impl<'de> Deserialize<'de> for PairedStats
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 PairedStats
impl JsonSchema for PairedStats
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 PairedStats
impl PartialEq for PairedStats
Source§impl Serialize for PairedStats
impl Serialize for PairedStats
impl StructuralPartialEq for PairedStats
Auto Trait Implementations§
impl Freeze for PairedStats
impl RefUnwindSafe for PairedStats
impl Send for PairedStats
impl Sync for PairedStats
impl Unpin for PairedStats
impl UnsafeUnpin for PairedStats
impl UnwindSafe for PairedStats
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