pub enum ErrorKind {
    StateIDOverflow {
        max: usize,
    },
    PremultiplyOverflow {
        max: usize,
        requested_max: usize,
    },
}
Expand description

The kind of error that occurred.

Variants

StateIDOverflow

Fields

max: usize

The maximum possible state ID.

An error that occurs when constructing an automaton would require the use of a state ID that overflows the chosen state ID representation. For example, if one is using u8 for state IDs and builds a DFA with 257 states, then the last state’s ID will be 256 which cannot be represented with u8.

PremultiplyOverflow

Fields

max: usize

The maximum possible state id.

requested_max: usize

The maximum ID required by premultiplication.

An error that occurs when premultiplication of state IDs is requested when constructing an Aho-Corasick DFA, but doing so would overflow the chosen state ID representation.

When max == requested_max, then the state ID would overflow usize.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.