Struct actix_web_grants::PermissionGuard
source · pub struct PermissionGuard<Type> { /* private fields */ }
Expand description
Implementation of Guard trait for validate permissions
use actix_web::dev::ServiceRequest;
use actix_web::{web, App, Error, HttpResponse, HttpServer};
use actix_web_grants::{GrantsMiddleware, PermissionGuard};
use std::sync::Arc;
fn main() {
HttpServer::new(|| {
App::new()
.wrap(GrantsMiddleware::with_extractor(extract))
.service(web::resource("/admin")
.to(|| async { HttpResponse::Ok().finish() })
.guard(PermissionGuard::new("ROLE_ADMIN".to_string())))
});
}
async fn extract(_req: &ServiceRequest) -> Result<Vec<String>, Error> {
// Here is a place for your code to get user permissions/grants/permissions from a request
// For example from a token or database
// Stub example
Ok(vec!["ROLE_ADMIN".to_string()])
}
Implementations§
source§impl<Type: PartialEq + Clone + 'static> PermissionGuard<Type>
impl<Type: PartialEq + Clone + 'static> PermissionGuard<Type>
pub fn new(allow_permission: Type) -> PermissionGuard<Type>
Trait Implementations§
Auto Trait Implementations§
impl<Type> Freeze for PermissionGuard<Type>where
Type: Freeze,
impl<Type> RefUnwindSafe for PermissionGuard<Type>where
Type: RefUnwindSafe,
impl<Type> Send for PermissionGuard<Type>where
Type: Send,
impl<Type> Sync for PermissionGuard<Type>where
Type: Sync,
impl<Type> Unpin for PermissionGuard<Type>where
Type: Unpin,
impl<Type> UnwindSafe for PermissionGuard<Type>where
Type: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more