structstd.os.linux.fanotify.MarkFlags[src]

Fields

ADD: bool = false
REMOVE: bool = false
DONT_FOLLOW: bool = false
ONLYDIR: bool = false
MOUNT: bool = false
IGNORED_MASK: bool = false

Mutually exclusive with IGNORE

IGNORED_SURV_MODIFY: bool = false
FLUSH: bool = false
FILESYSTEM: bool = false
EVICTABLE: bool = false
IGNORE: bool = false

Mutually exclusive with IGNORED_MASK

_: u21 = 0

Source Code

Source code
pub const MarkFlags = packed struct(u32) {
    ADD: bool = false,
    REMOVE: bool = false,
    DONT_FOLLOW: bool = false,
    ONLYDIR: bool = false,
    MOUNT: bool = false,
    /// Mutually exclusive with `IGNORE`
    IGNORED_MASK: bool = false,
    IGNORED_SURV_MODIFY: bool = false,
    FLUSH: bool = false,
    FILESYSTEM: bool = false,
    EVICTABLE: bool = false,
    /// Mutually exclusive with `IGNORED_MASK`
    IGNORE: bool = false,
    _: u21 = 0,
}