MACPayloadValidationError is the validation error returned by MACPayload.ValidateFields if the designated constraints aren't met.
| 388 | // MACPayloadValidationError is the validation error returned by |
| 389 | // MACPayload.ValidateFields if the designated constraints aren't met. |
| 390 | type MACPayloadValidationError struct { |
| 391 | field string |
| 392 | reason string |
| 393 | cause error |
| 394 | key bool |
| 395 | } |
| 396 | |
| 397 | // Field function returns field value. |
| 398 | func (e MACPayloadValidationError) Field() string { return e.field } |
nothing calls this directly
no outgoing calls
no test coverage detected