...

Source file src/github.com/pelletier/go-toml/v2/unstable/unmarshaler.go

Documentation: github.com/pelletier/go-toml/v2/unstable

     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