fuser 0.17.0

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

bitflags! {
    /// Read flags.
    #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
    pub(crate) struct ReadFlags: u32 {
        /// Indicates that `fuse_read_in.lock_owner` contains lock owner.
        /// Users typically do not need to check this flag.
        const FUSE_READ_LOCKOWNER = 1 << 1;
    }
}