wami 0.17.1

Who Am I - Multicloud Identity, IAM, STS, and SSO operations library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! GDPR Store Traits
//!
//! Focused traits for consent, audit, and erasure storage operations.
//! Following the Interface Segregation Principle — consumers can depend
//! on only the sub-trait they need.

pub mod audit;
pub mod consent;

pub use audit::AuditStore;
pub use consent::ConsentStore;