pub struct IndexBuilder { /* private fields */ }Implementations§
Source§impl IndexBuilder
impl IndexBuilder
pub fn new(project_root: &Path, model_path: &Path) -> Result<Self>
Sourcepub fn index(
&self,
languages: Option<&[Language]>,
force: bool,
) -> Result<UpdateStats>
pub fn index( &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
Sourcepub fn index_specific_files(&self, files: &[PathBuf]) -> Result<UpdateStats>
pub fn index_specific_files(&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 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