pub struct DashboardProgress {
pub total_phases: u8,
pub find_progress: ScanProgress,
pub dupe_progress: DupeProgress,
/* private fields */
}Expand description
Thread-safe progress tracking across scan phases.
Fields§
§total_phases: u8Total phases (2 without dupes, 3 with dupes).
find_progress: ScanProgressPer-engine progress — populated for find and dupes phases.
dupe_progress: DupeProgressImplementations§
Auto Trait Implementations§
impl !Freeze for DashboardProgress
impl RefUnwindSafe for DashboardProgress
impl Send for DashboardProgress
impl Sync for DashboardProgress
impl Unpin for DashboardProgress
impl UnsafeUnpin for DashboardProgress
impl UnwindSafe for DashboardProgress
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more