pub struct SegmentStats {
pub cheap_wins: u32,
pub frontier_wins: u32,
pub ties: u32,
pub regressed: bool,
}Fields§
§cheap_wins: u32§frontier_wins: u32§ties: u32§regressed: boolImplementations§
Source§impl SegmentStats
impl SegmentStats
Trait Implementations§
Source§impl Clone for SegmentStats
impl Clone for SegmentStats
Source§fn clone(&self) -> SegmentStats
fn clone(&self) -> SegmentStats
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 SegmentStats
impl Debug for SegmentStats
Source§impl Default for SegmentStats
impl Default for SegmentStats
Source§fn default() -> SegmentStats
fn default() -> SegmentStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SegmentStats
impl<'de> Deserialize<'de> for SegmentStats
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 SegmentStats
impl RefUnwindSafe for SegmentStats
impl Send for SegmentStats
impl Sync for SegmentStats
impl Unpin for SegmentStats
impl UnsafeUnpin for SegmentStats
impl UnwindSafe for SegmentStats
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