Enum regex_automata::dfa::onepass::BuildErrorKind
source · enum BuildErrorKind {
NFA(BuildError),
Word(UnicodeWordBoundaryError),
TooManyStates {
limit: u64,
},
TooManyPatterns {
limit: u64,
},
UnsupportedLook {
look: Look,
},
ExceededSizeLimit {
limit: usize,
},
NotOnePass {
msg: &'static str,
},
}
Expand description
The kind of error that occurred during the construction of a one-pass DFA.
Variants§
NFA(BuildError)
Word(UnicodeWordBoundaryError)
TooManyStates
TooManyPatterns
UnsupportedLook
ExceededSizeLimit
NotOnePass
Trait Implementations§
source§impl Clone for BuildErrorKind
impl Clone for BuildErrorKind
source§fn clone(&self) -> BuildErrorKind
fn clone(&self) -> BuildErrorKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for BuildErrorKind
impl RefUnwindSafe for BuildErrorKind
impl Send for BuildErrorKind
impl Sync for BuildErrorKind
impl Unpin for BuildErrorKind
impl UnwindSafe for BuildErrorKind
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