Enum pcre::CompileOption [] [src]

pub enum CompileOption {
    Caseless,
    Multiline,
    DotAll,
    Extended,
    Anchored,
    DollarEndOnly,
    Extra,
    Ungreedy,
    NoAutoCapture,
    AutoCallout,
    FirstLine,
    DupNames,
    NewlineCR,
    NewlineLF,
    NewlineCRLF,
    NewlineAny,
    NewlineAnyCRLF,
    BsrAnyCRLF,
    BsrUnicode,
    JavaScriptCompat,
    Ucp,
}

Variants

Trait Implementations

impl Clone for CompileOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl CLike for CompileOption
[src]

Converts a u32 to a C-like enum. This method only needs to be safe for possible return values of to_u32 of this trait. Read more

Converts a C-like enum to a u32. The value must be <= 31.