class Typhoeus::Request

def marshal_dump

marshalled.
`on_complete` and `after_complete` handlers, since they cannot be
Return the important data needed to serialize this Request, except the
def marshal_dump
  (instance_variables - ['@on_complete', '@after_complete', :@on_complete, :@after_complete]).map do |name|
    [name, instance_variable_get(name)]
  end
end