class MQTT::Packet::Subscribe

def inspect

Returns a human readable string, summarising the properties of the packet
def inspect
  _str = "\#<#{self.class}: 0x%2.2X, %s>" % [
    id,
    topics.map { |t| "'#{t[0]}':#{t[1]}" }.join(', ')
  ]
end