LoadStruct loads the fields from f to dst. dst must be a struct pointer.
(dst interface{}, f []Field)
| 240 | |
| 241 | // LoadStruct loads the fields from f to dst. dst must be a struct pointer. |
| 242 | func LoadStruct(dst interface{}, f []Field) error { |
| 243 | return loadStructWithMeta(dst, f, nil) |
| 244 | } |
| 245 | |
| 246 | // SaveStruct returns the fields from src as a slice of Field. |
| 247 | // src must be a struct pointer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…