Sha256: 5f0c9df4727592695deb1cd63ae1de021b03dcd9d0d1b68e1f34d12a7136cb19
Contents?: true
Size: 553 Bytes
Versions: 30
Compression:
Stored size: 553 Bytes
Contents
//! Linux `mount` API. // The `mount` module includes the `mount` function and related // functions which were originally defined in `rustix::fs` but are // now replaced by deprecated aliases. After the next semver bump, // we can remove the aliases and all the `#[cfg(feature = "mount")]` // here and in src/backend/*/mount. // // The `fsopen` module includes `fsopen` and related functions. #[cfg(feature = "mount")] mod fsopen; mod mount_unmount; mod types; #[cfg(feature = "mount")] pub use fsopen::*; pub use mount_unmount::*; pub use types::*;
Version data entries
30 entries across 30 versions & 1 rubygems