pub struct ContextIndexResult {
pub indexed: u32,
pub skipped: u32,
pub total_files: u32,
}Expand description
Result of context indexing operation.
Fields§
§indexed: u32Number of files successfully indexed.
skipped: u32Number of files skipped (binary, unchanged, etc.).
total_files: u32Total number of files processed.
Trait Implementations§
Source§impl Clone for ContextIndexResult
impl Clone for ContextIndexResult
Source§fn clone(&self) -> ContextIndexResult
fn clone(&self) -> ContextIndexResult
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 moreSource§impl Debug for ContextIndexResult
impl Debug for ContextIndexResult
Source§impl<'de> Deserialize<'de> for ContextIndexResult
impl<'de> Deserialize<'de> for ContextIndexResult
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 ContextIndexResult
impl RefUnwindSafe for ContextIndexResult
impl Send for ContextIndexResult
impl Sync for ContextIndexResult
impl Unpin for ContextIndexResult
impl UnwindSafe for ContextIndexResult
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