aboutsummaryrefslogtreecommitdiff
path: root/vendor/rustix/src/fs/mount.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/rustix/src/fs/mount.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/rustix/src/fs/mount.rs')
-rw-r--r--vendor/rustix/src/fs/mount.rs55
1 files changed, 0 insertions, 55 deletions
diff --git a/vendor/rustix/src/fs/mount.rs b/vendor/rustix/src/fs/mount.rs
deleted file mode 100644
index bd44aaa..0000000
--- a/vendor/rustix/src/fs/mount.rs
+++ /dev/null
@@ -1,55 +0,0 @@
-//! Linux `mount`.
-//!
-//! These have been moved to a new `rustix::mount` module.
-
-#[deprecated(note = "`rustix::fs::UnmountFlags` moved to `rustix::mount::UnmountFlags`.")]
-#[doc(hidden)]
-pub use crate::mount::UnmountFlags;
-
-#[deprecated(note = "`rustix::fs::MountFlags` moved to `rustix::mount::MountFlags`.")]
-#[doc(hidden)]
-pub use crate::mount::MountFlags;
-
-#[deprecated(
- note = "`rustix::fs::MountPropagationFlags` moved to `rustix::mount::MountPropagationFlags`."
-)]
-#[doc(hidden)]
-pub use crate::mount::MountPropagationFlags;
-
-#[deprecated(note = "`rustix::fs::mount` moved to `rustix::mount::mount`.")]
-#[doc(hidden)]
-pub use crate::mount::mount;
-
-#[deprecated(note = "`rustix::fs::unmount` moved to `rustix::mount::unmount`.")]
-#[doc(hidden)]
-pub use crate::mount::unmount;
-
-#[deprecated(
- note = "`rustix::fs::remount` is renamed and moved to `rustix::mount::mount_remount`."
-)]
-#[doc(hidden)]
-pub use crate::mount::mount_remount as remount;
-
-#[deprecated(
- note = "`rustix::fs::bind_mount` is renamed and moved to `rustix::mount::mount_bind`."
-)]
-#[doc(hidden)]
-pub use crate::mount::mount_bind as bind_mount;
-
-#[deprecated(
- note = "`rustix::fs::recursive_bind_mount` is renamed and moved to `rustix::mount::mount_recursive_bind`."
-)]
-#[doc(hidden)]
-pub use crate::mount::mount_recursive_bind as recursive_bind_mount;
-
-#[deprecated(
- note = "`rustix::fs::change_mount` is renamed and moved to `rustix::mount::mount_change`."
-)]
-#[doc(hidden)]
-pub use crate::mount::mount_change as change_mount;
-
-#[deprecated(
- note = "`rustix::fs::move_mount` is renamed and moved to `rustix::mount::mount_move`."
-)]
-#[doc(hidden)]
-pub use crate::mount::mount_move as move_mount;