Error Set KEventError [src]
Errors
The process does not have permission to register a filter.
The event could not be found to be modified or deleted.
changelist or eventlist had too many items on it. TODO remove this possibility
The specified process to attach to does not exist.
No memory was available to register the event.
Source
pub const KEventError = error{
/// The process does not have permission to register a filter.
AccessDenied,
/// The event could not be found to be modified or deleted.
EventNotFound,
/// No memory was available to register the event.
SystemResources,
/// The specified process to attach to does not exist.
ProcessNotFound,
/// changelist or eventlist had too many items on it.
/// TODO remove this possibility
Overflow,
}