Struct regex::prog::InstSplit[][src]

pub struct InstSplit {
    pub goto1: usize,
    pub goto2: usize,
}

Representation of the Split instruction.

Fields

The first instruction to try. A match resulting from following goto1 has precedence over a match resulting from following goto2.

The second instruction to try. A match resulting from following goto1 has precedence over a match resulting from following goto2.

Trait Implementations

impl Clone for InstSplit
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InstSplit
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for InstSplit

impl Sync for InstSplit