pub type Result<T> = Result<T, Error>;
Result type with errors that can be emitted by Rustc.
enum Result<T> { Ok(T), Err(Vec<(String, Option<Span>)>), }
Contains the success value
Contains the error value