Function mount_move
pub fn mount_move<Source, Target>(
source: Source,
target: Target,
) -> Result<(), Errno> ⓘ
Available on crate feature
dep_rustix
only.Expand description
mount(source, target, NULL, MS_MOVE, NULL)
This is not the same as the move_mount
syscall. If you want to use that,
use move_mount
instead.