As stated in the title, this PR adds impl From<std::fs::File> for async_fs::File by using the internal File::new function. I don't know if there are any hidden gotchas' but I found it useful for integration with other non-async crates, like tempfile and so on.
Hi,
As stated in the title, this PR adds
impl From<std::fs::File> for async_fs::File
by using the internalFile::new
function. I don't know if there are any hidden gotchas' but I found it useful for integration with other non-async crates, liketempfile
and so on.