[][src]Module dynasmrt::mmap

This module implements some wrappers around Mmap/MmapMut to also support a cheap "empty" variant.

Structs

ExecutableBuffer

A structure holding a buffer of executable memory. It also derefs to a &[u8]. This structure does not allocate when its size is 0.

MutableBuffer

ExecutableBuffer equivalent that holds a buffer of mutable memory instead of executable memory. It also derefs to a &mut [u8]. This structure does not allocate when its size is 0.