pub struct RefreshSummary {
pub changed: usize,
pub added: usize,
pub deleted: usize,
pub total_processed: usize,
}Expand description
Result of an incremental refresh of the semantic index. Counts are file
counts; total_processed is the number of current/deleted files considered.
Fields§
§changed: usize§added: usize§deleted: usize§total_processed: usizeImplementations§
Trait Implementations§
Source§impl Clone for RefreshSummary
impl Clone for RefreshSummary
Source§fn clone(&self) -> RefreshSummary
fn clone(&self) -> RefreshSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RefreshSummary
impl Debug for RefreshSummary
Source§impl Default for RefreshSummary
impl Default for RefreshSummary
Source§fn default() -> RefreshSummary
fn default() -> RefreshSummary
Returns the “default value” for a type. Read more
impl Copy for RefreshSummary
Auto Trait Implementations§
impl Freeze for RefreshSummary
impl RefUnwindSafe for RefreshSummary
impl Send for RefreshSummary
impl Sync for RefreshSummary
impl Unpin for RefreshSummary
impl UnsafeUnpin for RefreshSummary
impl UnwindSafe for RefreshSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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