pub struct BenchFrontier {
pub name: String,
pub role: String,
pub source: String,
pub as_of: String,
pub harness: Option<String>,
pub cost_note: String,
pub points: Vec<FrontierPoint>,
}Expand description
One benchmark after dominance is computed.
Fields§
§name: String§role: String§source: String§as_of: String§harness: Option<String>§cost_note: String§points: Vec<FrontierPoint>Trait Implementations§
Source§impl Clone for BenchFrontier
impl Clone for BenchFrontier
Source§fn clone(&self) -> BenchFrontier
fn clone(&self) -> BenchFrontier
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 BenchFrontier
impl Debug for BenchFrontier
Source§impl PartialEq for BenchFrontier
impl PartialEq for BenchFrontier
Source§fn eq(&self, other: &BenchFrontier) -> bool
fn eq(&self, other: &BenchFrontier) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BenchFrontier
impl Serialize for BenchFrontier
impl StructuralPartialEq for BenchFrontier
Auto Trait Implementations§
impl Freeze for BenchFrontier
impl RefUnwindSafe for BenchFrontier
impl Send for BenchFrontier
impl Sync for BenchFrontier
impl Unpin for BenchFrontier
impl UnsafeUnpin for BenchFrontier
impl UnwindSafe for BenchFrontier
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