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