nix/mount/
mod.rs

1//! Mount file systems
2#[cfg(any(target_os = "android", target_os = "linux"))]
3#[cfg_attr(docsrs, doc(cfg(all())))]
4mod linux;
5
6#[cfg(any(target_os = "android", target_os = "linux"))]
7pub use self::linux::*;
8
9#[cfg(any(target_os = "dragonfly",
10          target_os = "freebsd",
11          target_os = "macos",
12          target_os = "netbsd",
13          target_os = "openbsd"))]
14#[cfg_attr(docsrs, doc(cfg(all())))]
15mod bsd;
16
17#[cfg(any(target_os = "dragonfly",
18          target_os = "freebsd",
19          target_os = "macos",
20          target_os = "netbsd",
21          target_os = "openbsd"
22          ))]
23pub use self::bsd::*;