Struct regex_syntax::hir::translate::Flags[][src]

struct Flags {
    case_insensitive: Option<bool>,
    multi_line: Option<bool>,
    dot_matches_new_line: Option<bool>,
    swap_greed: Option<bool>,
    unicode: Option<bool>,
}

A translator's representation of a regular expression's flags at any given moment in time.

Each flag can be in one of three states: absent, present but disabled or present but enabled.

Fields

Methods

impl Flags
[src]

Trait Implementations

impl Clone for Flags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Flags
[src]

impl Debug for Flags
[src]

Formats the value using the given formatter. Read more

impl Default for Flags
[src]

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

Auto Trait Implementations

impl Send for Flags

impl Sync for Flags