Skip to content

Commit 18b84c9

Browse files
authored
Merge pull request #1 from brmmm3/add_debug_trait_to_matchoptions
Add Debug trait to MatchOptions
2 parents f54e935 + 7ba450f commit 18b84c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ fn chars_eq(a: char, b: char, case_sensitive: bool) -> bool {
967967

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

0 commit comments

Comments
 (0)