Struct regex::prog::InstSave[][src]

pub struct InstSave {
    pub goto: usize,
    pub slot: usize,
}

Representation of the Save instruction.

Fields

The next location to execute in the program.

The capture slot (there are two slots for every capture in a regex, including the zeroth capture for the entire match).

Trait Implementations

impl Clone for InstSave
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InstSave
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for InstSave

impl Sync for InstSave