FCtrlValidationError is the validation error returned by FCtrl.ValidateFields if the designated constraints aren't met.
| 605 | // FCtrlValidationError is the validation error returned by |
| 606 | // FCtrl.ValidateFields if the designated constraints aren't met. |
| 607 | type FCtrlValidationError struct { |
| 608 | field string |
| 609 | reason string |
| 610 | cause error |
| 611 | key bool |
| 612 | } |
| 613 | |
| 614 | // Field function returns field value. |
| 615 | func (e FCtrlValidationError) Field() string { return e.field } |
nothing calls this directly
no outgoing calls
no test coverage detected