pub struct IndexBuilder { /* private fields */ }Implementations§
Source§impl IndexBuilder
impl IndexBuilder
pub fn new(project_root: &Path, model_path: &Path) -> Result<Self>
pub fn with_quantized( project_root: &Path, model_path: &Path, quantized: bool, ) -> Result<Self>
pub fn with_options( project_root: &Path, model_path: &Path, quantized: bool, pool_factor: Option<usize>, parallel_sessions: Option<usize>, batch_size: Option<usize>, ) -> Result<Self>
Sourcepub fn set_auto_confirm(&mut self, auto_confirm: bool)
pub fn set_auto_confirm(&mut self, auto_confirm: bool)
Set whether to automatically confirm indexing for large codebases (> 10K code units)
Sourcepub fn set_model_name(&mut self, name: &str)
pub fn set_model_name(&mut self, name: &str)
Set the model name for display purposes
Sourcepub fn index(
&mut self,
languages: Option<&[Language]>,
force: bool,
) -> Result<UpdateStats>
pub fn index( &mut self, languages: Option<&[Language]>, force: bool, ) -> Result<UpdateStats>
Single entry point for indexing.
- Creates index if none exists
- Updates incrementally if files changed
- Full rebuild if
force = true - Full rebuild if CLI version changed (clears outdated index)
Sourcepub fn try_index(
&mut self,
languages: Option<&[Language]>,
force: bool,
) -> Result<Option<UpdateStats>>
pub fn try_index( &mut self, languages: Option<&[Language]>, force: bool, ) -> Result<Option<UpdateStats>>
Non-blocking version of index() for use during search.
Returns Ok(None) immediately if another process holds the lock,
allowing the caller to search the existing index without waiting.
Sourcepub fn index_specific_files(&mut self, files: &[PathBuf]) -> Result<UpdateStats>
pub fn index_specific_files(&mut self, files: &[PathBuf]) -> Result<UpdateStats>
Index only specific files (for filtered search). Only indexes files that are not already in the index or have changed. Returns the number of files that were indexed.
Source§impl IndexBuilder
impl IndexBuilder
Auto Trait Implementations§
impl Freeze for IndexBuilder
impl RefUnwindSafe for IndexBuilder
impl Send for IndexBuilder
impl Sync for IndexBuilder
impl Unpin for IndexBuilder
impl UnsafeUnpin for IndexBuilder
impl UnwindSafe for IndexBuilder
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> 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