pub struct IndexerOptions {
pub tmp_dir: Option<PathBuf>,
pub verbose: u32,
}Expand description
Options for building a YARA FM index.
Fields§
§tmp_dir: Option<PathBuf>Temporary directory for intermediate files during index construction.
None uses the output directory’s parent.
verbose: u32Verbosity level (0 = silent, 1 = progress, 2 = debug).
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
Source§impl Default for IndexerOptions
impl Default for IndexerOptions
Source§fn default() -> IndexerOptions
fn default() -> IndexerOptions
Returns the “default value” for a type. Read more
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