actix_web_httpauth/extractors/
mod.rs

1//! Type-safe authentication information extractors.
2
3pub mod basic;
4pub mod bearer;
5mod config;
6mod errors;
7
8pub use self::{config::AuthExtractorConfig, errors::AuthenticationError};