Function symlink
async fn symlink<impl AsRef<Path>: AsRef<std::path::Path>, impl AsRef<Path>: AsRef<std::path::Path>>(original: impl AsRef<Path>, link: impl AsRef<Path>) -> Result<()>
Creates a new symbolic link on the filesystem.
The link path will be a symbolic link pointing to the original path.
This is an async version of std::os::unix::fs::symlink.