pub struct StageComparison {
pub version: u16,
pub stage: Stage,
pub baseline_elapsed_ns: u64,
pub candidate_elapsed_ns: u64,
pub elapsed_delta_ns: i128,
pub elapsed_change_percent: Option<f64>,
pub baseline_calls: u64,
pub candidate_calls: u64,
pub calls_delta: i128,
}Expand description
Exact aggregate difference for one stage.
Fields§
§version: u16§stage: Stage§baseline_elapsed_ns: u64§candidate_elapsed_ns: u64§elapsed_delta_ns: i128§elapsed_change_percent: Option<f64>§baseline_calls: u64§candidate_calls: u64§calls_delta: i128Trait Implementations§
Source§impl Clone for StageComparison
impl Clone for StageComparison
Source§fn clone(&self) -> StageComparison
fn clone(&self) -> StageComparison
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 StageComparison
impl Debug for StageComparison
Source§impl<'de> Deserialize<'de> for StageComparison
impl<'de> Deserialize<'de> for StageComparison
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 PartialEq for StageComparison
impl PartialEq for StageComparison
Source§impl Serialize for StageComparison
impl Serialize for StageComparison
impl StructuralPartialEq for StageComparison
Auto Trait Implementations§
impl Freeze for StageComparison
impl RefUnwindSafe for StageComparison
impl Send for StageComparison
impl Sync for StageComparison
impl Unpin for StageComparison
impl UnsafeUnpin for StageComparison
impl UnwindSafe for StageComparison
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