lib/pio/lldp/port_description_value.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require 'bindata'

module Pio
  class Lldp
    # TLV value field of port description TLV
    class PortDescriptionValue < BinData::Record
      endian :big

      stringz :port_description
    end
  end
end