protoDecoder implements the Decoder interface for protocol buffers.
| 103 | |
| 104 | // protoDecoder implements the Decoder interface for protocol buffers. |
| 105 | type protoDecoder struct { |
| 106 | r protodelim.Reader |
| 107 | s model.ValidationScheme |
| 108 | } |
| 109 | |
| 110 | // Decode implements the Decoder interface. |
| 111 | func (d *protoDecoder) Decode(v *dto.MetricFamily) error { |
nothing calls this directly
no outgoing calls
no test coverage detected