DLSettingsValidationError is the validation error returned by DLSettings.ValidateFields if the designated constraints aren't met.
| 1117 | // DLSettingsValidationError is the validation error returned by |
| 1118 | // DLSettings.ValidateFields if the designated constraints aren't met. |
| 1119 | type DLSettingsValidationError struct { |
| 1120 | field string |
| 1121 | reason string |
| 1122 | cause error |
| 1123 | key bool |
| 1124 | } |
| 1125 | |
| 1126 | // Field function returns field value. |
| 1127 | func (e DLSettingsValidationError) Field() string { return e.field } |
nothing calls this directly
no outgoing calls
no test coverage detected