structstd.os.windows.FileNotifyChangeFilter[src]

Fields

file_name: bool = false
dir_name: bool = false
attributes: bool = false
size: bool = false
last_write: bool = false
last_access: bool = false
creation: bool = false
ea: bool = false
security: bool = false
stream_name: bool = false
stream_size: bool = false
stream_write: bool = false
_pad: u20 = 0

Source Code

Source code
pub const FileNotifyChangeFilter = packed struct(DWORD) {
    file_name: bool = false,
    dir_name: bool = false,
    attributes: bool = false,
    size: bool = false,
    last_write: bool = false,
    last_access: bool = false,
    creation: bool = false,
    ea: bool = false,
    security: bool = false,
    stream_name: bool = false,
    stream_size: bool = false,
    stream_write: bool = false,
    _pad: u20 = 0,
}