Enum regex_syntax::Error
source · #[non_exhaustive]
pub enum Error {
Parse(Error),
Translate(Error),
}
Expand description
This error type encompasses any error that can be returned by this crate.
This error type is marked as non_exhaustive
. This means that adding a
new variant is not considered a breaking change.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Parse(Error)
An error that occurred while translating concrete syntax into abstract syntax (AST).
Translate(Error)
An error that occurred while translating abstract syntax into a high level intermediate representation (HIR).
Trait Implementations§
source§impl Error for Error
impl Error for Error
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()