Decode converts a value to the Input type, if possible.
(any)
| 238 | type InputDecoder interface { |
| 239 | // Decode converts a value to the Input type, if possible. |
| 240 | DecodeInput(any) (Input, error) |
| 241 | } |
| 242 | |
| 243 | // Wrapper is an interface for types that wrap another type. |
no outgoing calls
no test coverage detected