[src]

Struct glob::MatchOptions

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:

MatchOptions {
    case_sensitive: true,
    require_literal_separator: false.
    require_literal_leading_dot: false
}

Trait Implementations

Derived Implementations

impl Default for MatchOptions

fn default() -> MatchOptions

impl Hash for MatchOptions

fn hash(&self, __arg_0: &mut SipState)

impl TotalOrd for MatchOptions

fn cmp(&self, __arg_0: &MatchOptions) -> Ordering

impl Ord for MatchOptions

fn lt(&self, __arg_0: &MatchOptions) -> bool

fn le(&self, __arg_0: &MatchOptions) -> bool

fn gt(&self, __arg_0: &MatchOptions) -> bool

fn ge(&self, __arg_0: &MatchOptions) -> bool

impl TotalEq for MatchOptions

fn assert_receiver_is_total_eq(&self)

impl Eq for MatchOptions

fn eq(&self, __arg_0: &MatchOptions) -> bool

fn ne(&self, __arg_0: &MatchOptions) -> bool

impl Clone for MatchOptions

fn clone(&self) -> MatchOptions