Skip to main content

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

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