Struct aho_corasick::Dense [] [src]

pub struct Dense(_);

State transitions that can be stored either sparsely or densely.

This uses less space but at the expense of slower matching.

Trait Implementations

impl Transitions for Dense

fn new(depth: u32) -> Dense

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

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

Derived Implementations

impl Debug for Dense

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

impl Clone for Dense

fn clone(&self) -> Dense

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