adminx 0.2.6

A powerful, modern admin panel framework for Rust built on Actix Web and MongoDB with automatic CRUD, role-based access control, and a beautiful responsive UI
Documentation
1
2
3
4
5
6
7
8
// adminx/src/nested.rs
use actix_web::Scope;

pub trait AdmixNestedResource: Send + Sync {
    fn base_path(&self) -> &'static str;
    fn parent_param(&self) -> &'static str;
    fn as_scope(&self) -> Scope;
}