[][src]Enum aho_corasick::ErrorKind

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

The kind of error that occurred.

Variants

StateIDOverflow

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.

Fields of StateIDOverflow

max: usize

The maximum possible state ID.

PremultiplyOverflow

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.

Fields of PremultiplyOverflow

max: usize

The maximum possible state id.

requested_max: usize

The maximum ID required by premultiplication.

Trait Implementations

impl Clone for ErrorKind[src]

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

Performs copy-assignment from source. Read more

impl Debug for ErrorKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]