Enums§
- Mount options to pass to mount(2) for a FUSE filesystem. See the official document for the descriptions.
Functions§
- Initiates a FUSE mount at
mountpoint
directory withflags
andoptions
via mount(2). The caller should provide a file descriptor (backed by /dev/fuse) withMountOption::FD
. After this function completes, the FUSE filesystem can start to handle the requests, e.g. viafuse::worker::start_message_loop()
.