Struct regex::prog::InstBytes[][src]

pub struct InstBytes {
    pub goto: usize,
    pub start: u8,
    pub end: u8,
}

Representation of the Bytes instruction.

Fields

The next location to execute in the program if this instruction succeeds.

The start (inclusive) of this byte range.

The end (inclusive) of this byte range.

Methods

impl InstBytes
[src]

Returns true if and only if the given byte is in this range.

Trait Implementations

impl Clone for InstBytes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InstBytes
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for InstBytes

impl Sync for InstBytes