Registry / utility / mmap
library0.1.1rscratesunverified

A library for dealing with memory-mapped I/O in Rust.

# Cargo.toml [dependencies] mmap = "0.1.1"
INSTALL
IMPORT
SIG · MMAP
M
mmap
utilityrustv0.1.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

MemoryMap
use mmap::MemoryMap;

Creates a memory-mapped region of 4096 bytes with read/write permissions.

use mmap::MemoryMap; let map = MemoryMap::new(4096, &[mmap::MapOption::MapReadable, mmap::MapOption::MapWritable]).unwrap(); println!("Mapped {} bytes", map.len());
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
1 hits · last 30 days
Meta
1
Resources
mmap — cargo add mmap · libregistry