Enum regex_automata::hybrid::error::BuildErrorKind
source · enum BuildErrorKind {
NFA(BuildError),
InsufficientCacheCapacity {
minimum: usize,
given: usize,
},
InsufficientStateIDCapacity {
err: LazyStateIDError,
},
Unsupported(&'static str),
}
Variants§
NFA(BuildError)
InsufficientCacheCapacity
InsufficientStateIDCapacity
Fields
§
err: LazyStateIDError
Unsupported(&'static str)
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