# File lib/util/wrapper.rb, line 130
      def inspect
        return "#{self.class}<nil>" unless @impl
        pstr = Cproton.pn_string("")
        begin
          Cproton.pn_inspect(@impl, pstr)
          return Cproton.pn_string_get(pstr)
        ensure
          Cproton.pn_free(pstr)
        end
      end