pub type Result<T> = Result<T, SolcError>;
enum Result<T> { Ok(T), Err(SolcError), }
Contains the success value
Contains the error value