Struct aho_corasick::Sparse [] [src]

pub struct Sparse(_);

State transitions that are always sparse.

This can use enormous amounts of memory when there are many patterns, but matching is very fast.

Trait Implementations

impl Debug for Sparse
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Sparse
[src]

fn clone(&self) -> Sparse

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Transitions for Sparse
[src]

fn new(_: u32) -> Sparse

fn goto(&self, b: u8) -> StateIdx

fn set_goto(&mut self, b: u8, si: StateIdx)