fuser icon indicating copy to clipboard operation
fuser copied to clipboard

Filesystem in Userspace (FUSE) for Rust

Results 29 fuser issues
Sort by recently updated
recently updated
newest added

The defaults in libfuse look better than the defaults that we currently use

According to the libfuse docs, when `FUSE_CAP_EXPLICIT_INVAL_DATA` is set: ``` /** * Indicates support for invalidating cached pages only on explicit request. * * If this flag is set in...

libfuse has a separate `flock()` method for setting BSD style locks. This is necessary because the semantics are different and BSD locks are independent from POSIX locks. Notes: The `lk_flags`...

A lot of places in the code use base level types to mean lots of different things. For example, ReplyCreated: ``` pub fn created( self, ttl: &Duration, attr: &FileAttr, generation:...

This is a tracking issue for the work I've been doing on enum based API. The goal is to have an easier to use, more decoupled, more typesafe, more extensible...

When i set FileAttr of crtime to SystemTime::now() in the create function, the compiler give me error:thread 'main' panicked at 'overflow when adding duration to instant', library/std/src/time.rs:584:31. that's the full...

Hey, I was wondering, if there is a Multithreading support in the current Version. I was experimenting with the examples/simple.rs and realized, that copying a large amount of files was...