[][src]Constant nc::types::IN_ALL_EVENTS

pub const IN_ALL_EVENTS: i32 = IN_ACCESS
    | IN_MODIFY
    | IN_ATTRIB
    | IN_CLOSE_WRITE
    | IN_CLOSE_NOWRITE
    | IN_OPEN
    | IN_MOVED_FROM
    | IN_MOVED_TO
    | IN_DELETE
    | IN_CREATE
    | IN_DELETE_SELF
    | IN_MOVE_SELF; // 4_095i32

All of the events - we build the list by hand so that we can add flags in the future and not break backward compatibility. Apps will get only the events that they originally wanted. Be sure to add new events here!