#[non_exhaustive]pub struct SearchToolConfig {
pub enabled: bool,
pub default_head_limit: u32,
pub max_head_limit: u32,
pub max_file_size_bytes: u64,
pub max_result_bytes: u64,
pub max_walk_files: u64,
pub respect_gitignore_default: bool,
}Expand description
Configuration for the local search tool.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.enabled: bool§default_head_limit: u32§max_head_limit: u32§max_file_size_bytes: u64§max_result_bytes: u64§max_walk_files: u64§respect_gitignore_default: boolTrait Implementations§
Source§impl Clone for SearchToolConfig
impl Clone for SearchToolConfig
Source§fn clone(&self) -> SearchToolConfig
fn clone(&self) -> SearchToolConfig
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 SearchToolConfig
impl Debug for SearchToolConfig
Source§impl Default for SearchToolConfig
impl Default for SearchToolConfig
impl Eq for SearchToolConfig
Source§impl PartialEq for SearchToolConfig
impl PartialEq for SearchToolConfig
Source§fn eq(&self, other: &SearchToolConfig) -> bool
fn eq(&self, other: &SearchToolConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SearchToolConfig
Auto Trait Implementations§
impl Freeze for SearchToolConfig
impl RefUnwindSafe for SearchToolConfig
impl Send for SearchToolConfig
impl Sync for SearchToolConfig
impl Unpin for SearchToolConfig
impl UnsafeUnpin for SearchToolConfig
impl UnwindSafe for SearchToolConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.