# File lib/confstruct/hash_with_struct_access.rb, line 59
    def inspect
      ret = "#<#{self.class}"
      keys.sort_by(&:to_s).each do |key|
        ret << " #{key}=#{self.fetch(key).inspect}"
      end
      ret << '>'
      ret
    end