enum BuildErrorKind {
Layout(LayoutError),
NFABuild(BuildError),
LookaroundUnicode(UnicodeWordBoundaryError),
Unsupported(String),
}
Expand description
Represents the specific kind of a BuildError
.
This enum provides more granular information about the underlying cause of a
BuildError
.
Variants§
Layout(LayoutError)
NFABuild(BuildError)
LookaroundUnicode(UnicodeWordBoundaryError)
Unsupported(String)
Trait Implementations§
Auto 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