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; }