pub enum IndexProgress {
IncrementalHint {
indexed_files: usize,
},
LogRootMissing {
provider_name: String,
log_root: PathBuf,
},
ProviderScanning {
provider_name: String,
},
ProviderSessionCount {
provider_name: String,
count: usize,
project_hash: String,
all_projects: bool,
},
SessionRegistered {
session_id: String,
},
Completed {
total_sessions: usize,
scanned_files: usize,
skipped_files: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for IndexProgress
impl Clone for IndexProgress
Source§fn clone(&self) -> IndexProgress
fn clone(&self) -> IndexProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IndexProgress
impl RefUnwindSafe for IndexProgress
impl Send for IndexProgress
impl Sync for IndexProgress
impl Unpin for IndexProgress
impl UnwindSafe for IndexProgress
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