Sherlock-Holo / fuse3

an async version fuse library for rust
MIT License
83 stars 17 forks source link

Make Session::mount semi-synchronous #39

Closed asomers closed 2 years ago

asomers commented 2 years ago

Session::mount will now return a Future that completes when the mount does, whose result is another Future that completes when the file system is unmounted. This allows consumers to know whether the mount succeeded without waiting for a future unmount.

Fixes #27

Sherlock-Holo commented 2 years ago

LGTM thanks