Struct actix_web_httpauth::extractors::bearer::BearerAuth [−][src]
pub struct BearerAuth(_);
Expand description
Extractor for HTTP Bearer auth
Example
use actix_web_httpauth::extractors::bearer::BearerAuth;
async fn index(auth: BearerAuth) -> String {
format!("Hello, user with token {}!", auth.token())
}
If authentication fails, this extractor fetches the Config
instance
from the [app data] in order to properly form the WWW-Authenticate
response header.
Example
use actix_web::{web, App};
use actix_web_httpauth::extractors::bearer::{BearerAuth, Config};
async fn index(auth: BearerAuth) -> String {
format!("Hello, {}!", auth.token())
}
fn main() {
let app = App::new()
.app_data(
Config::default()
.realm("Restricted area")
.scope("email photo"),
)
.service(web::resource("/index.html").route(web::get().to(index)));
}
Implementations
Trait Implementations
type Error = AuthenticationError<Bearer>
type Error = AuthenticationError<Bearer>
The associated error which can be returned.
Parse the authentication credentials from the actix’ ServiceRequest
.
type Error = AuthenticationError<Bearer>
type Error = AuthenticationError<Bearer>
The associated error which can be returned.
Create a Self from request parts asynchronously.
Auto Trait Implementations
impl RefUnwindSafe for BearerAuth
impl Send for BearerAuth
impl Sync for BearerAuth
impl Unpin for BearerAuth
impl UnwindSafe for BearerAuth
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self