pub struct PagefileProvider {
mmap: Mmap,
pagefile_num: u8,
page_count: u64,
}Expand description
Provider for Windows pagefile.sys — a flat file of 4KB pages.
pagefile.sys has no headers and no compression. Each page occupies
exactly 4096 bytes at offset page_index * 0x1000.
Fields§
§mmap: Mmap§pagefile_num: u8§page_count: u64Implementations§
Trait Implementations§
Source§impl PagefileSource for PagefileProvider
impl PagefileSource for PagefileProvider
Auto Trait Implementations§
impl Freeze for PagefileProvider
impl RefUnwindSafe for PagefileProvider
impl Send for PagefileProvider
impl Sync for PagefileProvider
impl Unpin for PagefileProvider
impl UnsafeUnpin for PagefileProvider
impl UnwindSafe for PagefileProvider
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