FHDRValidationError is the validation error returned by FHDR.ValidateFields if the designated constraints aren't met.
| 516 | // FHDRValidationError is the validation error returned by FHDR.ValidateFields |
| 517 | // if the designated constraints aren't met. |
| 518 | type FHDRValidationError struct { |
| 519 | field string |
| 520 | reason string |
| 521 | cause error |
| 522 | key bool |
| 523 | } |
| 524 | |
| 525 | // Field function returns field value. |
| 526 | func (e FHDRValidationError) Field() string { return e.field } |
nothing calls this directly
no outgoing calls
no test coverage detected