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 Clone for Dense
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Dense
[src]

[src]

Formats the value using the given formatter.

impl Transitions for Dense
[src]

[src]

Return a new state at the given depth.

[src]

Return the next state index given the next character.

[src]

Set the next state index for the character given.

[src]

The memory use in bytes (on the heap) of this set of transitions.