pub struct Tally(pub Summary);Expand description
Tally outcomes without holding onto them.
Tuple Fields§
§0: SummaryTrait Implementations§
impl Copy for Tally
Source§impl Progress for Tally
impl Progress for Tally
Source§fn device_finished(&mut self, e: &DeviceEvent<'_>)
fn device_finished(&mut self, e: &DeviceEvent<'_>)
Called after each device, successful or not.
Source§fn run_started(&mut self, _total: usize, _url: &str)
fn run_started(&mut self, _total: usize, _url: &str)
Called once, before any device is touched.
Source§fn device_started(&mut self, _index: usize, _total: usize, _device: &Device)
fn device_started(&mut self, _index: usize, _total: usize, _device: &Device)
Called before each device, with a 1-based index.
Source§fn run_finished(&mut self, _summary: Summary, _elapsed: Duration)
fn run_finished(&mut self, _summary: Summary, _elapsed: Duration)
Called once, after every device.
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