Region — Fixed‑Size Typed Memory Access for no_std
A small, panic‑checked static memory region that provides safe, typed reads and writes with runtime bounds and alignment verification.
Useful in no_std and embedded contexts where you need manual layout control without the unpredictability of the global allocator.
Features
#![no_std]compatible- Compile‑time fixed capacity
- Runtime bounds & alignment checks
- Simple API for typed load/store
Example (no_std)
use ;
use Region;
pub extern "C" !