pub struct ParallelVisitReport {
pub visited: u64,
pub errors: Vec<WalkError>,
pub quit: bool,
pub cancelled: bool,
}Expand description
Summary of a streaming parallel traversal.
Fields§
§visited: u64§errors: Vec<WalkError>§quit: bool§cancelled: boolTrait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ParallelVisitReport
impl !UnwindSafe for ParallelVisitReport
impl Freeze for ParallelVisitReport
impl Send for ParallelVisitReport
impl Sync for ParallelVisitReport
impl Unpin for ParallelVisitReport
impl UnsafeUnpin for ParallelVisitReport
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