Struct glob::MatchOptions[src]
pub struct MatchOptions {
// some fields omitted
}Configuration options to modify the behaviour of Pattern::matches_with(..)
Methods
impl MatchOptions
fn new() -> MatchOptions
Constructs a new MatchOptions with default field values. This is used
when calling functions that do not take an explicit MatchOptions parameter.
This function always returns this value:
fn main() { MatchOptions { case_sensitive: true, require_literal_separator: false. require_literal_leading_dot: false } }MatchOptions { case_sensitive: true, require_literal_separator: false. require_literal_leading_dot: false }