Skip to main content

Mountain/IPC/Permission/Validate/ValidatePermission/
mod.rs

1
2//! # ValidatePermission
3//!
4//! Role-based access control for IPC operations. Two atoms:
5//! `SecurityContext::Struct` - the per-request envelope
6//! (user / roles / permissions / IP / timestamp), and
7//! `Validator::Struct` - the engine that holds the role +
8//! permission tables, the operation → permissions map, and
9//! enforces the default-deny policy through
10//! `Validator::Struct::ValidatePermission`.
11
12pub mod SecurityContext;
13
14pub mod Validator;