devela::_dep::rustix::fs

Function move_mount

pub fn move_mount<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