Struct regex::re_builder::RegexOptions[][src]

pub struct RegexOptions {
    pub pats: Vec<String>,
    pub size_limit: usize,
    pub dfa_size_limit: usize,
    pub nest_limit: u32,
    pub case_insensitive: bool,
    pub multi_line: bool,
    pub dot_matches_new_line: bool,
    pub swap_greed: bool,
    pub ignore_whitespace: bool,
    pub unicode: bool,
}

The set of user configurable options for compiling zero or more regexes.

Fields

Trait Implementations

impl Clone for RegexOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RegexOptions
[src]

Formats the value using the given formatter. Read more

impl Default for RegexOptions
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for RegexOptions

impl Sync for RegexOptions