#[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 moreSource§impl Debug for WinAPIThreadPriority
impl Debug for WinAPIThreadPriority
Source§impl From<WinAPIThreadPriority> for ThreadPriorityOsValue
impl From<WinAPIThreadPriority> for ThreadPriorityOsValue
Source§fn from(p: WinAPIThreadPriority) -> Self
fn from(p: WinAPIThreadPriority) -> Self
Source§impl Hash for WinAPIThreadPriority
impl Hash for WinAPIThreadPriority
Source§impl Ord for WinAPIThreadPriority
impl Ord for WinAPIThreadPriority
Source§fn cmp(&self, other: &WinAPIThreadPriority) -> Ordering
fn cmp(&self, other: &WinAPIThreadPriority) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for WinAPIThreadPriority
impl PartialEq for WinAPIThreadPriority
Source§impl PartialOrd for WinAPIThreadPriority
impl PartialOrd for WinAPIThreadPriority
Source§impl TryFrom<ThreadPriority> for WinAPIThreadPriority
impl TryFrom<ThreadPriority> for WinAPIThreadPriority
Source§impl TryFrom<u32> for WinAPIThreadPriority
impl TryFrom<u32> for WinAPIThreadPriority
impl Copy for WinAPIThreadPriority
impl Eq for WinAPIThreadPriority
impl StructuralPartialEq for WinAPIThreadPriority
Auto Trait Implementations§
impl Freeze for WinAPIThreadPriority
impl RefUnwindSafe for WinAPIThreadPriority
impl Send for WinAPIThreadPriority
impl Sync for WinAPIThreadPriority
impl Unpin for WinAPIThreadPriority
impl UnwindSafe for WinAPIThreadPriority
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)