protoDecoder implements the Decoder interface for protocol buffers.
| 96 | |
| 97 | // protoDecoder implements the Decoder interface for protocol buffers. |
| 98 | type protoDecoder struct { |
| 99 | r protodelim.Reader |
| 100 | s model.ValidationScheme |
| 101 | } |
| 102 | |
| 103 | // Decode implements the Decoder interface. |
| 104 | func (d *protoDecoder) Decode(v *dto.MetricFamily) error { |
nothing calls this directly
no outgoing calls
no test coverage detected