pub struct PerformanceComparisonSummary {
pub average_compile_time_ms: f64,
pub average_memory_overhead_bytes: f64,
pub performance_leader: String,
pub performance_summary: String,
}Expand description
Summary of performance comparison
Fields§
§average_compile_time_ms: f64§average_memory_overhead_bytes: f64§performance_leader: String§performance_summary: StringTrait Implementations§
Source§impl Debug for PerformanceComparisonSummary
impl Debug for PerformanceComparisonSummary
Source§impl Default for PerformanceComparisonSummary
impl Default for PerformanceComparisonSummary
Source§fn default() -> PerformanceComparisonSummary
fn default() -> PerformanceComparisonSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PerformanceComparisonSummary
impl RefUnwindSafe for PerformanceComparisonSummary
impl Send for PerformanceComparisonSummary
impl Sync for PerformanceComparisonSummary
impl Unpin for PerformanceComparisonSummary
impl UnwindSafe for PerformanceComparisonSummary
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more