pub struct Config {Show 14 fields
pub files: Vec<PathBuf>,
pub patterns: Vec<String>,
pub regex_patterns: Vec<Regex>,
pub case_insensitive: bool,
pub color_mappings: HashMap<String, Color>,
pub notify_enabled: bool,
pub notify_patterns: Vec<String>,
pub notify_throttle: u32,
pub dry_run: bool,
pub quiet: bool,
pub no_color: bool,
pub prefix_files: bool,
pub poll_interval: u64,
pub buffer_size: usize,
}Fields§
§files: Vec<PathBuf>§patterns: Vec<String>§regex_patterns: Vec<Regex>§case_insensitive: bool§color_mappings: HashMap<String, Color>§notify_enabled: bool§notify_patterns: Vec<String>§notify_throttle: u32§dry_run: bool§quiet: bool§no_color: bool§prefix_files: bool§poll_interval: u64§buffer_size: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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