pub struct SummaryRow {
pub benchmark: String,
pub status: String,
pub wall_ms: String,
pub change_pct: String,
}Expand description
A single row in the summary table.
Fields§
§benchmark: String§status: String§wall_ms: String§change_pct: StringTrait Implementations§
Source§impl Clone for SummaryRow
impl Clone for SummaryRow
Source§fn clone(&self) -> SummaryRow
fn clone(&self) -> SummaryRow
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 moreAuto Trait Implementations§
impl Freeze for SummaryRow
impl RefUnwindSafe for SummaryRow
impl Send for SummaryRow
impl Sync for SummaryRow
impl Unpin for SummaryRow
impl UnsafeUnpin for SummaryRow
impl UnwindSafe for SummaryRow
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