Struct regress::Flags [−][src]
Expand description
Flags used to control regex parsing. The default flags are case-sensitive, not-multiline, and optimizing.
Fields
icase: bool
If set, make the regex case-insensitive. Equivalent to the ‘i’ flag in JavaScript.
multiline: bool
If set, ^ and $ match at line separators, not just the input boundaries. Equivalent to the ‘m’ flag in JavaScript.
dot_all: bool
If set, . matches at line separators as well as any other character. Equivalent to the ‘m’ flag in JavaScript.
no_opt: bool
If set, disable regex IR passes.
Trait Implementations
Construct a Flags from a string, using JavaScript field names. ‘i’ means to ignore case, ‘m’ means multiline. Note the ‘g’ flag implies a stateful regex and is not supported. Note the ‘u’ flag currently only controls if invalid backreferences should throw a syntax error. Other flags are not implemented and are ignored.
Auto Trait Implementations
impl RefUnwindSafe for Flags
impl UnwindSafe for Flags
Blanket Implementations
Mutably borrows from an owned value. Read more