Enum regex::pikevm::FollowEpsilon[][src]

enum FollowEpsilon {
    IP(usize),
    Capture {
        slot: usize,
        pos: Option<usize>,
    },
}

A representation of an explicit stack frame when following epsilon transitions. This is used to avoid recursion.

Variants

Follow transitions at the given instruction pointer.

Restore the capture slot with the given position in the input.

Fields of Capture

Trait Implementations

impl Clone for FollowEpsilon
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FollowEpsilon
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FollowEpsilon

impl Sync for FollowEpsilon