pub struct ReplayBaselineScore {
pub name: String,
pub visible_probes: usize,
pub recoverable_probes: usize,
pub total_probes: usize,
pub visible_rate: f64,
pub recoverable_rate: f64,
pub tokens: usize,
pub active_task_visible: bool,
}Fields§
§name: String§visible_probes: usize§recoverable_probes: usize§total_probes: usize§visible_rate: f64§recoverable_rate: f64§tokens: usize§active_task_visible: boolTrait Implementations§
Source§impl Clone for ReplayBaselineScore
impl Clone for ReplayBaselineScore
Source§fn clone(&self) -> ReplayBaselineScore
fn clone(&self) -> ReplayBaselineScore
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 ReplayBaselineScore
impl Debug for ReplayBaselineScore
Source§impl<'de> Deserialize<'de> for ReplayBaselineScore
impl<'de> Deserialize<'de> for ReplayBaselineScore
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
Source§impl PartialEq for ReplayBaselineScore
impl PartialEq for ReplayBaselineScore
Source§fn eq(&self, other: &ReplayBaselineScore) -> bool
fn eq(&self, other: &ReplayBaselineScore) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReplayBaselineScore
impl Serialize for ReplayBaselineScore
impl StructuralPartialEq for ReplayBaselineScore
Auto Trait Implementations§
impl Freeze for ReplayBaselineScore
impl RefUnwindSafe for ReplayBaselineScore
impl Send for ReplayBaselineScore
impl Sync for ReplayBaselineScore
impl Unpin for ReplayBaselineScore
impl UnsafeUnpin for ReplayBaselineScore
impl UnwindSafe for ReplayBaselineScore
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