redb/tree_store/page_store/file_backend/
mod.rs

1#[cfg(any(unix, target_os = "wasi"))]
2mod unix;
3#[cfg(any(unix, target_os = "wasi"))]
4pub use unix::FileBackend;
5
6#[cfg(windows)]
7mod windows;
8#[cfg(windows)]
9pub use windows::FileBackend;
10
11#[cfg(not(any(windows, unix, target_os = "wasi")))]
12mod fallback;
13#[cfg(not(any(windows, unix, target_os = "wasi")))]
14pub use fallback::FileBackend;