Reader is the interface expected by [UnmarshalFrom]. It is implemented by *[bufio.Reader].
| 78 | // Reader is the interface expected by [UnmarshalFrom]. |
| 79 | // It is implemented by *[bufio.Reader]. |
| 80 | type Reader interface { |
| 81 | io.Reader |
| 82 | io.ByteReader |
| 83 | } |
| 84 | |
| 85 | // UnmarshalFrom parses and consumes a varint size-delimited wire-format message |
| 86 | // from r. |
nothing calls this directly
no outgoing calls
no test coverage detected