pub struct Progress {
pub device_done: usize,
pub device_total: usize,
pub device_name: String,
}Expand description
Progress update emitted as each device profile finishes.
Fields§
§device_done: usizeNumber of profiles completed so far.
device_total: usizeTotal number of profiles to analyze.
device_name: StringName of the most recently completed profile.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnsafeUnpin for Progress
impl UnwindSafe for Progress
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