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