| 6 | |
| 7 | #[derive(Debug)] |
| 8 | pub enum AuthError { |
| 9 | WrongCredentials, |
| 10 | InvalidToken, |
| 11 | FailedToExtractTokenFromRequest, |
| 12 | } |
| 13 | |
| 14 | impl Display for AuthError { |
| 15 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected