pub enum Error {
Parse(Error),
Translate(Error),
// some variants omitted
}
This error type encompasses any error that can be returned by this crate.
An error that occurred while translating concrete syntax into abstract
syntax (AST).
An error that occurred while translating abstract syntax into a high
level intermediate representation (HIR).
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
The lower-level cause of this error, if any. Read more
Formats the value using the given formatter. Read more