blob: 00cfd6de4581b2c6828b43c184aedc803190d407 (
plain)
1
2
3
4
5
6
7
|
package unstable
// The Unmarshaler interface may be implemented by types to customize their
// behavior when being unmarshaled from a TOML document.
type Unmarshaler interface {
UnmarshalTOML(value *Node) error
}
|