Struct regress::Flags[][src]

pub struct Flags {
    pub icase: bool,
    pub multiline: bool,
    pub dot_all: bool,
    pub no_opt: bool,
}
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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.