Enum regex_automata::ErrorKind[][src]

pub enum ErrorKind {
    Syntax(String),
    Unsupported(String),
    Serialize(String),
    StateIDOverflow {
        max: usize,
    },
    PremultiplyOverflow {
        max: usize,
        requested_max: usize,
    },
}
Expand description

The kind of error that occurred.

Variants

Syntax(String)

An error that occurred while parsing a regular expression. Note that this error may be printed over multiple lines, and is generally intended to be end user readable on its own.

Unsupported(String)

An error that occurred because an unsupported regex feature was used. The message string describes which unsupported feature was used.

The primary regex features that are unsupported are those that require look-around, such as the ^ and $ anchors and the word boundary assertion \b. These may be supported in the future.

Serialize(String)

An error that occurred when attempting to serialize a DFA to bytes.

StateIDOverflow

An error that occurs when constructing a DFA would require the use of a state ID that overflows the chosen state ID representation. For example, if one is using u8 for state IDs and builds a DFA with 257 states, then the last state’s ID will be 256 which cannot be represented with u8.

Typically, this error occurs in the determinization process of building a DFA (the conversion step from NFA to DFA). It can also occur when trying to build a smaller DFA from an existing one.

Show fields

Fields of StateIDOverflow

max: usize

The maximum possible state ID.

PremultiplyOverflow

An error that occurs when premultiplication of state IDs is requested, but doing so would overflow the chosen state ID representation.

When max == requested_max, then the state ID would overflow usize.

Show fields

Fields of PremultiplyOverflow

max: usize

The maximum possible state id.

requested_max: usize

The maximum ID required by premultiplication.

Trait Implementations

impl Clone for ErrorKind[src]

fn clone(&self) -> ErrorKind[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ErrorKind[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.