Enum aho_corasick::ErrorKind [−][src]
The kind of error that occurred.
Variants
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.
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
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,