pub struct PerformanceMetrics {
pub discovery_ms: u128,
pub generation_ms: u128,
pub test_execution_ms: u128,
pub coverage_ms: u128,
pub replay_ms: u128,
pub artifact_synthesis_ms: u128,
pub total_ms: u128,
}Fields§
§discovery_ms: u128§generation_ms: u128§test_execution_ms: u128§coverage_ms: u128§replay_ms: u128§artifact_synthesis_ms: u128§total_ms: u128Trait Implementations§
Source§impl Clone for PerformanceMetrics
impl Clone for PerformanceMetrics
Source§fn clone(&self) -> PerformanceMetrics
fn clone(&self) -> PerformanceMetrics
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 PerformanceMetrics
impl Debug for PerformanceMetrics
Source§impl Default for PerformanceMetrics
impl Default for PerformanceMetrics
Source§fn default() -> PerformanceMetrics
fn default() -> PerformanceMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PerformanceMetrics
impl<'de> Deserialize<'de> for PerformanceMetrics
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 PerformanceMetrics
impl PartialEq for PerformanceMetrics
Source§fn eq(&self, other: &PerformanceMetrics) -> bool
fn eq(&self, other: &PerformanceMetrics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PerformanceMetrics
impl Serialize for PerformanceMetrics
impl Eq for PerformanceMetrics
impl StructuralPartialEq for PerformanceMetrics
Auto Trait Implementations§
impl Freeze for PerformanceMetrics
impl RefUnwindSafe for PerformanceMetrics
impl Send for PerformanceMetrics
impl Sync for PerformanceMetrics
impl Unpin for PerformanceMetrics
impl UnsafeUnpin for PerformanceMetrics
impl UnwindSafe for PerformanceMetrics
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