unmarshaler.go 216 B

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