Struct aho_corasick::State[][src]

struct State<T> {
    out: Vec<usize>,
    fail: StateIdx,
    goto: T,
    depth: u32,
}

Fields

Methods

impl<T: Transitions> State<T>
[src]

impl<T: Transitions> State<T>
[src]

Trait Implementations

impl<T: Clone> Clone for State<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Transitions> Debug for State<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for State<T> where
    T: Send

impl<T> Sync for State<T> where
    T: Sync