On Linux, if we move (rename) a file from one file system to another like this:
fs::rename("/src/a", "/dest/a")?;
is it possible the file /dest/a
to become visible/available to other potential readers (processes that scan /dest/
for example) before the whole file data (contents) is fully copied to the destination file system?