pub enum FrontierStanding {
OnFrontier,
Dominated {
by: String,
},
CostUnknown,
}Expand description
Where a point sits relative to its benchmark’s cost-quality frontier.
Variants§
OnFrontier
Dominated
Dominated by another point (cheaper-or-equal AND higher-or-equal, strictly
better on one axis); carries that point’s model_id.
CostUnknown
No published cost — cannot be placed on the cost axis; plotted by score only.
Trait Implementations§
Source§impl Clone for FrontierStanding
impl Clone for FrontierStanding
Source§fn clone(&self) -> FrontierStanding
fn clone(&self) -> FrontierStanding
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 FrontierStanding
impl Debug for FrontierStanding
impl Eq for FrontierStanding
Source§impl PartialEq for FrontierStanding
impl PartialEq for FrontierStanding
Source§fn eq(&self, other: &FrontierStanding) -> bool
fn eq(&self, other: &FrontierStanding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FrontierStanding
impl Serialize for FrontierStanding
impl StructuralPartialEq for FrontierStanding
Auto Trait Implementations§
impl Freeze for FrontierStanding
impl RefUnwindSafe for FrontierStanding
impl Send for FrontierStanding
impl Sync for FrontierStanding
impl Unpin for FrontierStanding
impl UnsafeUnpin for FrontierStanding
impl UnwindSafe for FrontierStanding
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