Enum pcre::ExecOption [] [src]

pub enum ExecOption {
    ExecAnchored,
    ExecNotBol,
    ExecNotEol,
    ExecNotEmpty,
    ExecPartialSoft,
    ExecNewlineCR,
    ExecNewlineLF,
    ExecNewlineCRLF,
    ExecNewlineAny,
    ExecNewlineAnyCRLF,
    ExecBsrAnyCRLF,
    ExecBsrUnicode,
    ExecNoStartOptimise,
    ExecPartialHard,
    ExecNotEmptyAtStart,
}

Variants

Trait Implementations

impl Clone for ExecOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl CLike for ExecOption
[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.