pub struct IndexerOptions {
pub max_file_size_bytes: u64,
pub max_file_count: usize,
pub follow_symlinks: bool,
pub respect_gitignore: bool,
pub custom_ignore_file: Option<String>,
}Expand description
Configuration options for the indexer.
Fields§
§max_file_size_bytes: u64§max_file_count: usize§follow_symlinks: bool§respect_gitignore: bool§custom_ignore_file: Option<String>Trait Implementations§
Source§impl Clone for IndexerOptions
impl Clone for IndexerOptions
Source§fn clone(&self) -> IndexerOptions
fn clone(&self) -> IndexerOptions
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 IndexerOptions
impl Debug for IndexerOptions
Auto Trait Implementations§
impl Freeze for IndexerOptions
impl RefUnwindSafe for IndexerOptions
impl Send for IndexerOptions
impl Sync for IndexerOptions
impl Unpin for IndexerOptions
impl UnsafeUnpin for IndexerOptions
impl UnwindSafe for IndexerOptions
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