enum BuildErrorKind {
    NFA(BuildError),
    InsufficientCacheCapacity {
        minimum: usize,
        given: usize,
    },
    InsufficientStateIDCapacity {
        err: LazyStateIDError,
    },
    Unsupported(&'static str),
}Variants§
NFA(BuildError)
InsufficientCacheCapacity
InsufficientStateIDCapacity
Fields
§
err: LazyStateIDErrorUnsupported(&'static str)
Trait Implementations§
Source§impl Clone for BuildErrorKind
 
impl Clone for BuildErrorKind
Source§fn clone(&self) -> BuildErrorKind
 
fn clone(&self) -> BuildErrorKind
Returns a duplicate 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