Enum posix_regex::compile::Error [−][src]
pub enum Error {
EOF,
EmptyRepetition,
Expected(u8, Option<u8>),
IllegalRange,
IntegerOverflow,
LeadingRepetition,
UnclosedRepetition,
UnexpectedToken(u8),
UnknownClass(Vec<u8>),
UnknownCollation,
}An error that occurred while compiling the regex
Variants
EOFEmptyRepetitionExpected(u8, Option<u8>)IllegalRangeIntegerOverflowLeadingRepetitionUnclosedRepetitionUnexpectedToken(u8)UnknownClass(Vec<u8>)UnknownCollation
Trait Implementations
impl Clone for Error[src]
impl Clone for Errorfn clone(&self) -> Error[src]
fn clone(&self) -> ErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Error[src]
impl PartialEq for Errorfn eq(&self, other: &Error) -> bool[src]
fn eq(&self, other: &Error) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Error) -> bool[src]
fn ne(&self, other: &Error) -> boolThis method tests for !=.
impl Eq for Error[src]
impl Eq for Error