devela::_dep::rustix::mount

Function mount_move

pub fn mount_move<Source, Target>(
    source: Source,
    target: Target,
) -> Result<(), Errno> 
where Source: Arg, Target: Arg,
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.

§References