pub struct GrepOpts {
pub glob: Option<String>,
pub context: usize,
pub max_results: Option<usize>,
pub case_insensitive: bool,
}Fields§
§glob: Option<String>§context: usize§max_results: Option<usize>§case_insensitive: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for GrepOpts
impl RefUnwindSafe for GrepOpts
impl Send for GrepOpts
impl Sync for GrepOpts
impl Unpin for GrepOpts
impl UnsafeUnpin for GrepOpts
impl UnwindSafe for GrepOpts
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