pub struct IndexResult {
pub project_id: String,
pub files_indexed: usize,
pub files_skipped: usize,
pub symbols_found: usize,
pub errors: Vec<String>,
pub duration_ms: u64,
}Expand description
Aggregate result of indexing a directory.
Fields§
§project_id: String§files_indexed: usize§files_skipped: usize§symbols_found: usize§errors: Vec<String>§duration_ms: u64Trait Implementations§
Source§impl Clone for IndexResult
impl Clone for IndexResult
Source§fn clone(&self) -> IndexResult
fn clone(&self) -> IndexResult
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 IndexResult
impl Debug for IndexResult
Source§impl<'de> Deserialize<'de> for IndexResult
impl<'de> Deserialize<'de> for IndexResult
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
Auto Trait Implementations§
impl Freeze for IndexResult
impl RefUnwindSafe for IndexResult
impl Send for IndexResult
impl Sync for IndexResult
impl Unpin for IndexResult
impl UnsafeUnpin for IndexResult
impl UnwindSafe for IndexResult
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