PayloadAuthPasswordBackendError is a payload for a message that indicates a backend failure during authentication.
| 45 | |
| 46 | // PayloadAuthPasswordBackendError is a payload for a message that indicates a backend failure during authentication. |
| 47 | type PayloadAuthPasswordBackendError struct { |
| 48 | Username string `json:"username" yaml:"username"` |
| 49 | Password []byte `json:"password" yaml:"password"` |
| 50 | Reason string `json:"reason" yaml:"reason"` |
| 51 | } |
| 52 | |
| 53 | // Equals compares two PayloadAuthPasswordBackendError payloads. |
| 54 | func (p PayloadAuthPasswordBackendError) Equals(other Payload) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected