pub struct Tally {
pub trials: u32,
pub running: u32,
pub done: u32,
pub pruned: u32,
pub failed: u32,
pub lowest: Option<f64>,
pub highest: Option<f64>,
pub best: Option<f64>,
}Expand description
What is seen of a commit’s trials without reading a single blob.
Fields§
§trials: u32§running: u32§done: u32§pruned: u32§failed: u32§lowest: Option<f64>The range of what is comparable, true without knowing the direction.
highest: Option<f64>§best: Option<f64>The best only if somebody declared which way is better. None
otherwise, and then the range is shown in its place.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tally
impl RefUnwindSafe for Tally
impl Send for Tally
impl Sync for Tally
impl Unpin for Tally
impl UnsafeUnpin for Tally
impl UnwindSafe for Tally
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