Module fmmap::raw

source ·
Expand description

Components of mmap file.

Modules

  • async_stdasync-std and async-trait
    async_std based raw mmap file
  • syncsync
    std based raw mmap file
  • tokiotokio and async-trait
    tokio based raw mmap file

Structs

  • DiskMmapFile contains an immutable mmap buffer and a read-only file.
  • DiskMmapFile contains a mutable mmap buffer and a writable file.
  • Use Bytes to mock a mmap, which is useful for test and in-memory storage engine.
  • Use BytesMut to mock a mmap, which is useful for test and in-memory storage engine.