Enum sedregex::ErrorKind[][src]

pub enum ErrorKind {
    NotEnoughSegments,
    UnknownCommand(String),
    UnknownFlag(char),
    RegexError(Error),
}

An error that might happen during the parsing.

Variants

A given string has not enough segments.

Unknown regex command has been detected.

Unknown regex flags has been detected.

Regex parsing/compiling error.

Trait Implementations

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ErrorKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind