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