class Async::HTTP::Headers

def == other

def == other
	if other.is_a? Hash
		to_h == other
	else
		@fields == other.fields
	end
end