pub struct AccountsIndexConfig {
pub bins: Option<usize>,
pub num_flush_threads: Option<NonZeroUsize>,
pub drives: Option<Vec<PathBuf>>,
pub index_limit_mb: IndexLimitMb,
pub ages_to_stay_in_cache: Option<u8>,
pub scan_results_limit_bytes: Option<usize>,
}Fields§
§bins: Option<usize>§num_flush_threads: Option<NonZeroUsize>§drives: Option<Vec<PathBuf>>§index_limit_mb: IndexLimitMb§ages_to_stay_in_cache: Option<u8>§scan_results_limit_bytes: Option<usize>Trait Implementations§
Source§impl Clone for AccountsIndexConfig
impl Clone for AccountsIndexConfig
Source§fn clone(&self) -> AccountsIndexConfig
fn clone(&self) -> AccountsIndexConfig
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 AccountsIndexConfig
impl Debug for AccountsIndexConfig
Auto Trait Implementations§
impl Freeze for AccountsIndexConfig
impl RefUnwindSafe for AccountsIndexConfig
impl Send for AccountsIndexConfig
impl Sync for AccountsIndexConfig
impl Unpin for AccountsIndexConfig
impl UnwindSafe for AccountsIndexConfig
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<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