mmap-wrapper 2.0.1

a simple wrapper for the memmap2 crate to cast mmap backed pointers to structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![cfg_attr(feature = "no_std", no_std)]

#[cfg(not(feature = "no_std"))]
pub mod memmap2;

#[cfg(feature = "no_std")]
pub mod no_std;

#[cfg(not(feature = "no_std"))]
pub use memmap2::*;

#[cfg(feature = "no_std")]
pub use no_std::*;