The Unmarshaler interface may be implemented by types to customize their behavior when being unmarshaled from a YAML document.
| 34 | // The Unmarshaler interface may be implemented by types to customize their |
| 35 | // behavior when being unmarshaled from a YAML document. |
| 36 | type Unmarshaler interface { |
| 37 | UnmarshalYAML(value *Node) error |
| 38 | } |
| 39 | |
| 40 | type obsoleteUnmarshaler interface { |
| 41 | UnmarshalYAML(unmarshal func(interface{}) error) error |
no outgoing calls
no test coverage detected