fmmap 0.5.0

A flexible and convenient high-level mmap for zero-copy file I/O.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{
  error::{Error, ErrorKind, Result},
  metadata::EmptyMetaData,
  tokio::{AsyncMmapFileExt, AsyncMmapFileMutExt, AsyncMmapFileReader, AsyncMmapFileWriter},
  MetaData,
};
use std::path::{Path, PathBuf};

declare_and_impl_async_empty_mmap_file!();

test_empty_mmap_file!(tokio::test);