MarshalSizer is the combination of the Marshaler and Sizer interfaces.
| 11 | // of the Marshaler and Sizer |
| 12 | // interfaces. |
| 13 | type MarshalSizer interface { |
| 14 | Marshaler |
| 15 | Sizer |
| 16 | } |
| 17 | |
| 18 | func ReadFile(dst Unmarshaler, file *os.File) error { |
| 19 | if u, ok := dst.(Decodable); ok { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…