Skip to content

Commit

Permalink
Add Debug trait to MatchOptions (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
brmmm3 authored and LukasKalbertodt committed Jan 26, 2020
1 parent f54e935 commit 2cf827b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -967,7 +967,7 @@ fn chars_eq(a: char, b: char, case_sensitive: bool) -> bool {

/// Configuration options to modify the behaviour of `Pattern::matches_with(..)`.
#[allow(missing_copy_implementations)]
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct MatchOptions {
/// Whether or not patterns should be matched in a case-sensitive manner.
/// This currently only considers upper/lower case relationships between
Expand Down

0 comments on commit 2cf827b

Please sign in to comment.