feat(match): expose struct option fields

This commit is contained in:
Federico Terzi 2021-04-04 21:59:55 +02:00
parent c0de39fdd0
commit 3a0c397410

View File

@ -79,10 +79,10 @@ impl<Id> RollingMatch<Id> {
}
pub struct StringMatchOptions {
case_insensitive: bool,
preserve_case_markers: bool,
left_word: bool,
right_word: bool,
pub case_insensitive: bool,
pub preserve_case_markers: bool,
pub left_word: bool,
pub right_word: bool,
}
impl Default for StringMatchOptions {