[][src]Enum regex_syntax::hir::ErrorKind

pub enum ErrorKind {
    UnicodeNotAllowed,
    InvalidUtf8,
    UnicodePropertyNotFound,
    UnicodePropertyValueNotFound,
    UnicodePerlClassNotFound,
    UnicodeCaseUnavailable,
    EmptyClassNotAllowed,
    // some variants omitted
}

The type of an error that occurred while building an Hir.

Variants

UnicodeNotAllowed

This error occurs when a Unicode feature is used when Unicode support is disabled. For example (?-u:\pL) would trigger this error.

InvalidUtf8

This error occurs when translating a pattern that could match a byte sequence that isn't UTF-8 and allow_invalid_utf8 was disabled.

UnicodePropertyNotFound

This occurs when an unrecognized Unicode property name could not be found.

UnicodePropertyValueNotFound

This occurs when an unrecognized Unicode property value could not be found.

UnicodePerlClassNotFound

This occurs when a Unicode-aware Perl character class (\w, \s or \d) could not be found. This can occur when the unicode-perl crate feature is not enabled.

UnicodeCaseUnavailable

This occurs when the Unicode simple case mapping tables are not available, and the regular expression required Unicode aware case insensitivity.

EmptyClassNotAllowed

This occurs when the translator attempts to construct a character class that is empty.

Note that this restriction in the translator may be removed in the future.

Trait Implementations

impl Clone for ErrorKind[src]

impl Debug for ErrorKind[src]

impl Display for ErrorKind[src]

impl Eq for ErrorKind[src]

impl PartialEq<ErrorKind> for ErrorKind[src]

impl StructuralEq for ErrorKind[src]

impl StructuralPartialEq for ErrorKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.