pub struct IndexOutcome {Show 13 fields
pub project_id: String,
pub scanned_files: usize,
pub indexed_files: usize,
pub skipped_files: usize,
pub symbols_indexed: usize,
pub imports_indexed: usize,
pub calls_indexed: usize,
pub unresolved_targets_indexed: usize,
pub chunks_indexed: usize,
pub indexed_file_paths: Vec<String>,
pub durations: IndexDurations,
pub degraded: Vec<IndexDegradation>,
pub projection_sync: Option<ProjectionSyncStatus>,
}Fields§
§project_id: String§scanned_files: usize§indexed_files: usize§skipped_files: usize§symbols_indexed: usize§imports_indexed: usize§calls_indexed: usize§unresolved_targets_indexed: usize§chunks_indexed: usize§indexed_file_paths: Vec<String>§durations: IndexDurations§degraded: Vec<IndexDegradation>§projection_sync: Option<ProjectionSyncStatus>Trait Implementations§
Source§impl Clone for IndexOutcome
impl Clone for IndexOutcome
Source§fn clone(&self) -> IndexOutcome
fn clone(&self) -> IndexOutcome
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 IndexOutcome
impl Debug for IndexOutcome
Source§impl Default for IndexOutcome
impl Default for IndexOutcome
Source§fn default() -> IndexOutcome
fn default() -> IndexOutcome
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexOutcome
impl<'de> Deserialize<'de> for IndexOutcome
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 IndexOutcome
impl PartialEq for IndexOutcome
Source§fn eq(&self, other: &IndexOutcome) -> bool
fn eq(&self, other: &IndexOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IndexOutcome
impl Serialize for IndexOutcome
impl Eq for IndexOutcome
impl StructuralPartialEq for IndexOutcome
Auto Trait Implementations§
impl Freeze for IndexOutcome
impl RefUnwindSafe for IndexOutcome
impl Send for IndexOutcome
impl Sync for IndexOutcome
impl Unpin for IndexOutcome
impl UnsafeUnpin for IndexOutcome
impl UnwindSafe for IndexOutcome
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.