actix_web_security/authentication/scheme/mod.rs
1//! The scheme module provides functionality to extract header values and authentication scheme related implementations
2//! for Basic authentication and JWT based OAuth2 authentication.
3
4pub mod authentication;
5pub mod authentication_provider;
6pub mod basic;
7pub mod bearer;
8pub mod header_extractor;