memory/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5mod cache;
6mod capability;
7mod r#macro;
8mod manager;
9mod protection;
10mod statistics;
11mod r#trait;
12
13pub use cache::*;
14pub use capability::*;
15pub use manager::*;
16pub use protection::*;
17pub use statistics::*;
18pub use r#trait::*;
19
20pub type Layout = core::alloc::Layout;