Enum parol_runtime::ParolError
source · pub enum ParolError {
ParserError(ParserError),
LexerError(LexerError),
UserError(Error),
}Variants§
Trait Implementations§
source§impl Debug for ParolError
impl Debug for ParolError
source§impl Display for ParolError
impl Display for ParolError
source§impl Error for ParolError
impl Error for ParolError
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()
source§impl From<Error> for ParolError
impl From<Error> for ParolError
source§impl From<LexerError> for ParolError
impl From<LexerError> for ParolError
source§fn from(source: LexerError) -> Self
fn from(source: LexerError) -> Self
Converts to this type from the input type.
source§impl From<ParserError> for ParolError
impl From<ParserError> for ParolError
source§fn from(source: ParserError) -> Self
fn from(source: ParserError) -> Self
Converts to this type from the input type.