Struct fuser::Session [−][src]
pub struct Session<FS: Filesystem> { /* fields omitted */ }Expand description
The session data structure
Implementations
Create a new session by mounting the given filesystem to the given mountpoint
Return path of the mounted filesystem
Run the session loop that receives kernel requests and dispatches them to method calls into the filesystem. This read-dispatch-loop is non-concurrent to prevent having multiple buffers (which take up much memory), but the filesystem methods may run concurrent by spawning threads.
Run the session loop in a background thread