pub struct CodeIndexProgressSummary {
pub git_file_count: usize,
pub blob_read_count: usize,
pub parsed_file_count: usize,
pub sqlite_write_count: usize,
pub skipped_file_count: usize,
pub degraded_file_count: usize,
pub batch_count: usize,
pub checkpoint_file_count: usize,
pub resource_budget: CodeIndexResourceBudget,
}Expand description
Coarse phase timing and counts reported by repository indexing.
Fields§
§git_file_count: usize§blob_read_count: usize§parsed_file_count: usize§sqlite_write_count: usize§skipped_file_count: usize§degraded_file_count: usize§batch_count: usize§checkpoint_file_count: usize§resource_budget: CodeIndexResourceBudgetTrait Implementations§
Source§impl Clone for CodeIndexProgressSummary
impl Clone for CodeIndexProgressSummary
Source§fn clone(&self) -> CodeIndexProgressSummary
fn clone(&self) -> CodeIndexProgressSummary
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 CodeIndexProgressSummary
impl Debug for CodeIndexProgressSummary
Source§impl Default for CodeIndexProgressSummary
impl Default for CodeIndexProgressSummary
Source§fn default() -> CodeIndexProgressSummary
fn default() -> CodeIndexProgressSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeIndexProgressSummary
impl<'de> Deserialize<'de> for CodeIndexProgressSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CodeIndexProgressSummary
impl PartialEq for CodeIndexProgressSummary
Source§fn eq(&self, other: &CodeIndexProgressSummary) -> bool
fn eq(&self, other: &CodeIndexProgressSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CodeIndexProgressSummary
impl Serialize for CodeIndexProgressSummary
impl Eq for CodeIndexProgressSummary
impl StructuralPartialEq for CodeIndexProgressSummary
Auto Trait Implementations§
impl Freeze for CodeIndexProgressSummary
impl RefUnwindSafe for CodeIndexProgressSummary
impl Send for CodeIndexProgressSummary
impl Sync for CodeIndexProgressSummary
impl Unpin for CodeIndexProgressSummary
impl UnsafeUnpin for CodeIndexProgressSummary
impl UnwindSafe for CodeIndexProgressSummary
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.