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

CaselessMultilineDotAllExtendedAnchoredDollarEndOnlyExtraUngreedyNoAutoCaptureAutoCalloutFirstLineDupNamesNewlineCRNewlineLFNewlineCRLFNewlineAnyNewlineAnyCRLFBsrAnyCRLFBsrUnicodeJavaScriptCompatUcp

Trait Implementations

impl Clone for CompileOption
[src]

fn clone(&self) -> CompileOption

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl CLike for CompileOption
[src]

unsafe fn from_u32(n: u32) -> CompileOption

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

fn to_u32(&self) -> u32

Converts a C-like enum to a u32.