#[repr(u32)]pub enum PoolType {
NonPaged = 0,
Paged = 1,
NonPagedNx = 512,
NonPagedSession = 32,
PagedSession = 33,
}Expand description
pool allocation type
Variants§
NonPaged = 0
non-paged pool (always resident in physical memory)
Paged = 1
paged pool (can be paged out)
NonPagedNx = 512
non-paged pool, no execute
NonPagedSession = 32
non-paged pool for session (drivers only)
PagedSession = 33
paged pool for session
Trait Implementations§
impl Copy for PoolType
impl Eq for PoolType
impl StructuralPartialEq for PoolType
Auto Trait Implementations§
impl Freeze for PoolType
impl RefUnwindSafe for PoolType
impl Send for PoolType
impl Sync for PoolType
impl Unpin for PoolType
impl UnwindSafe for PoolType
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
Mutably borrows from an owned value. Read more