# File lib/faraday/request.rb, line 91
    def to_env(connection)
      { :method           => method,
        :body             => body,
        :url              => connection.build_exclusive_url(path, params),
        :request_headers  => headers,
        :parallel_manager => connection.parallel_manager,
        :request          => options,
        :ssl              => connection.ssl}
    end