# File lib/backports/2.0.0/stdlib/ostruct.rb, line 10
  def eql?(other)
    return false unless other.kind_of?(OpenStruct)
    @table.eql?(other.table)
  end