Struct regex::backtrack::Cache[][src]

pub struct Cache {
    jobs: Vec<Job>,
    visited: Vec<u32>,
}

Shared cached state between multiple invocations of a backtracking engine in the same thread.

Fields

Methods

impl Cache
[src]

Create new empty cache for the backtracking engine.

Trait Implementations

impl Clone for Cache
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Cache
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Cache

impl Sync for Cache