module Airbrake::HashKeyable

def eql?(other)

Returns:
  • (Boolean) -

Parameters:
  • other (Object) --
def eql?(other)
  other.is_a?(self.class) && other.hash == hash
end

def hash

Returns:
  • (Integer) -
def hash
  to_h.hash
end