# File lib/typhoeus/easy.rb, line 340
    def perform
      set_headers()
      easy_perform()
      resp_code = response_code()
      if resp_code >= 200 && resp_code <= 299
        success
      else
        failure
      end
      resp_code
    end