#[repr(u32)]pub enum WinAPIThreadPriority {
BackgroundModeBegin = 65_536,
BackgroundModeEnd = 131_072,
AboveNormal = 1,
BelowNormal = 4_294_967_295,
Highest = 2,
Idle = 4_294_967_281,
Lowest = 4_294_967_294,
Normal = 0,
TimeCritical = 15,
}
Expand description
The WinAPI priority representation. Check out MSDN for more info: https://docs.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-setthreadpriority
Variants§
BackgroundModeBegin = 65_536
Begin background processing mode. The system lowers the resource scheduling priorities of the thread so that it can perform background work without significantly affecting activity in the foreground.
This value can be specified only if hThread is a handle to the current thread. The function fails if the thread is already in background processing mode.
§Warning
Windows Server 2003: This value is not supported.
BackgroundModeEnd = 131_072
End background processing mode. The system restores the resource scheduling priorities of the thread as they were before the thread entered background processing mode.
This value can be specified only if hThread is a handle to the current thread. The function fails if the thread is not in background processing mode.
§Warning
Windows Server 2003: This value is not supported.
AboveNormal = 1
Priority 1 point above the priority class.
BelowNormal = 4_294_967_295
Priority 1 point below the priority class.
Highest = 2
Priority 2 points above the priority class.
Idle = 4_294_967_281
Base priority of 1 for IDLE_PRIORITY_CLASS, BELOW_NORMAL_PRIORITY_CLASS, NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS, or HIGH_PRIORITY_CLASS processes, and a base priority of 16 for REALTIME_PRIORITY_CLASS processes.
Lowest = 4_294_967_294
Priority 2 points below the priority class.
Normal = 0
Normal priority for the priority class.
TimeCritical = 15
Base priority of 15 for IDLE_PRIORITY_CLASS, BELOW_NORMAL_PRIORITY_CLASS, NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS, or HIGH_PRIORITY_CLASS processes, and a base priority of 31 for REALTIME_PRIORITY_CLASS processes.
Trait Implementations§
Source§impl Clone for WinAPIThreadPriority
impl Clone for WinAPIThreadPriority
Source§fn clone(&self) -> WinAPIThreadPriority
fn clone(&self) -> WinAPIThreadPriority
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more