Struct regex::literal::SingleByteSet[][src]

struct SingleByteSet {
    sparse: Vec<bool>,
    dense: Vec<u8>,
    complete: bool,
    all_ascii: bool,
}

Fields

Methods

impl SingleByteSet
[src]

Faster find that special cases certain sizes to use memchr.

Generic find that works on any sized set.

Trait Implementations

impl Clone for SingleByteSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SingleByteSet
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SingleByteSet

impl Sync for SingleByteSet