fmmap/options/
async_std_impl.rs1use async_std::fs::OpenOptions;
2#[cfg(unix)]
3use async_std::os::unix::fs::OpenOptionsExt;
4use async_std::path::Path;
5
6use crate::async_std::{AsyncMmapFile, AsyncMmapFileMut};
7use crate::error::Error;
8use crate::raw::async_std::{AsyncDiskMmapFile, AsyncDiskMmapFileMut};
9use memmap2::MmapOptions;
10
11declare_and_impl_async_options!("async_std_async", "tokio_test", "async_std");
12
13impl_async_options_tests!("std_async", async_std::test, async_std);
14
15#[cfg(unix)]
16impl_options_unix_ext!(AsyncOptions);