Enum otter_sql::vm::ExecutionError
source · pub enum ExecutionError {
ParseError(ParserError),
CodegenError(CodegenError),
RuntimeError(RuntimeError),
}Variants§
Trait Implementations§
source§impl Debug for ExecutionError
impl Debug for ExecutionError
source§impl Display for ExecutionError
impl Display for ExecutionError
source§impl Error for ExecutionError
impl Error for ExecutionError
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()
source§impl From<CodegenError> for ExecutionError
impl From<CodegenError> for ExecutionError
source§fn from(err: CodegenError) -> Self
fn from(err: CodegenError) -> Self
Converts to this type from the input type.
source§impl From<ParserError> for ExecutionError
impl From<ParserError> for ExecutionError
source§fn from(err: ParserError) -> Self
fn from(err: ParserError) -> Self
Converts to this type from the input type.
source§impl From<RuntimeError> for ExecutionError
impl From<RuntimeError> for ExecutionError
source§fn from(err: RuntimeError) -> Self
fn from(err: RuntimeError) -> Self
Converts to this type from the input type.