Structs§
- Borrowed
Map - A wrapper around an
memmap2::MmapMutto prevent one from accidentally callingShm::maptwice on the same Shm (which could very easily introduce memory unsoundness). To use the contained map, just callBorrowedMap::map. One cannot safely move the map out of this struct, as that would easily allow them to break the lifetime-dependent relationship between this map and theShmit’s mapped onto. - Shm
- Unlink
OnDrop