fuser 0.17.0

Filesystem in Userspace (FUSE) for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bitflags::bitflags;

bitflags! {
    /// Write flags.
    #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
    pub struct WriteFlags: u32 {
        /// Delayed write from page cache, file handle is guessed.
        const FUSE_WRITE_CACHE = 1 << 0;
        /// lock_owner field is valid.
        const FUSE_WRITE_LOCKOWNER = 1 << 1;
        /// Kill suid and sgid bits.
        const FUSE_WRITE_KILL_SUIDGID = 1 << 2;
    }
}