pub struct RankingInfo {
pub percentile: f32,
pub baseline_comparisons: HashMap<String, f32>,
pub confidence_interval: (f32, f32),
}Expand description
Ranking information
Fields§
§percentile: f32Percentile ranking
baseline_comparisons: HashMap<String, f32>Comparison to baseline systems
confidence_interval: (f32, f32)Confidence interval
Trait Implementations§
Source§impl Clone for RankingInfo
impl Clone for RankingInfo
Source§fn clone(&self) -> RankingInfo
fn clone(&self) -> RankingInfo
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 moreSource§impl Debug for RankingInfo
impl Debug for RankingInfo
Source§impl<'de> Deserialize<'de> for RankingInfo
impl<'de> Deserialize<'de> for RankingInfo
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
Auto Trait Implementations§
impl Freeze for RankingInfo
impl RefUnwindSafe for RankingInfo
impl Send for RankingInfo
impl Sync for RankingInfo
impl Unpin for RankingInfo
impl UnwindSafe for RankingInfo
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