()
| 32 | AuthType::Bearer => "Bearer Token", |
| 33 | AuthType::ApiKey => "API Key", |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | pub fn all() -> &'static [AuthType] { |
| 38 | &[ |
| 39 | AuthType::None, |
| 40 | AuthType::Basic, |
| 41 | AuthType::Bearer, |
| 42 | AuthType::ApiKey, |
| 43 | ] |
| 44 | } |
nothing calls this directly
no outgoing calls
no test coverage detected