CFListValidationError is the validation error returned by CFList.ValidateFields if the designated constraints aren't met.
| 1209 | // CFListValidationError is the validation error returned by |
| 1210 | // CFList.ValidateFields if the designated constraints aren't met. |
| 1211 | type CFListValidationError struct { |
| 1212 | field string |
| 1213 | reason string |
| 1214 | cause error |
| 1215 | key bool |
| 1216 | } |
| 1217 | |
| 1218 | // Field function returns field value. |
| 1219 | func (e CFListValidationError) Field() string { return e.field } |
nothing calls this directly
no outgoing calls
no test coverage detected