(f reflect.StructField)
| 483 | } |
| 484 | |
| 485 | func isFieldRequired(f reflect.StructField) bool { |
| 486 | return getDocTagFlag(f, "required") |
| 487 | } |
| 488 | |
| 489 | func isFieldInline(f reflect.StructField) bool { |
| 490 | return yamlFieldInlineParser.MatchString(f.Tag.Get("yaml")) |
no test coverage detected