#[derive(Default, Debug, Clone, Copy)]
pub struct RegExpOptions {
pub sticky_flag: bool,
pub unicode_flag: bool,
pub unicode_property_escapes: bool,
pub dot_all_flag: bool,
pub named_capture_groups: bool,
pub look_behind_assertions: bool,
pub match_indices: bool,
pub set_notation: bool,
}