pub enum ErrorKind {
StateIDOverflow {
max: usize,
},
PremultiplyOverflow {
max: usize,
requested_max: usize,
},
}
Expand description
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
.
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
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)