MCPcopy Index your code
hub / github.com/Masterminds/structable / Record

Interface Record

structable.go:172–172  ·  view source on GitHub ↗

* Record describes a struct that can be stored. Example: type Stool struct { Id int `stbl:"id PRIMARY_KEY AUTO_INCREMENT"` Legs int `stbl:"number_of_legs"` Material string `stbl:"material"` Ignored string // will not be stored. } The above links the Stool record to a database

Source from the content-addressed store, hash-verified

170
171*/
172type Record interface{}
173
174// Internal representation of a field on a database table, and its
175// relation to a struct field.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected