# File lib/net/dns/rr.rb, line 208
      def inspect
        data = get_inspect 
        # Returns the preformatted string
        if @name.size < 24
          [@name, @ttl.to_s, @cls.to_s, @type.to_s, data].pack("A24 A8 A8 A8 A*")
        else
          to_a.join("   ")
        end
      end