github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/legacy/helper/schema/field_writer.go (about)

     1  package schema
     2  
     3  // FieldWriters are responsible for writing fields by address into
     4  // a proper typed representation. ResourceData uses this to write new data
     5  // into existing sources.
     6  type FieldWriter interface {
     7  	WriteField([]string, interface{}) error
     8  }