Enum regex::compile::InstHole[][src]

enum InstHole {
    Save {
        slot: usize,
    },
    EmptyLook {
        look: EmptyLook,
    },
    Char {
        c: char,
    },
    Ranges {
        ranges: Vec<(char, char)>,
    },
    Bytes {
        start: u8,
        end: u8,
    },
}

Variants

Fields of Save

Fields of EmptyLook

Fields of Char

Fields of Ranges

Fields of Bytes

Methods

impl InstHole
[src]

Trait Implementations

impl Clone for InstHole
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InstHole
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for InstHole

impl Sync for InstHole