# File lib/hashery/ostructable.rb, line 162
  def ==(other)
    case other
    when OpenStructable
      __table__ == other.__table__
    #when OpenStruct
    #  __table__ == other.__table__
    when Hash
      __table__ == other
    else
      false
    end
  end