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