pub struct PageFaultTimingSource;Expand description
Triggers and times minor page faults via mmap/munmap. Page fault
resolution requires TLB lookup, hardware page table walk (up to 4 levels on
ARM64), physical page allocation from the kernel free list, and zero-fill
for security. The timing depends on physical memory fragmentation.
Trait Implementations§
Source§impl EntropySource for PageFaultTimingSource
impl EntropySource for PageFaultTimingSource
Auto Trait Implementations§
impl Freeze for PageFaultTimingSource
impl RefUnwindSafe for PageFaultTimingSource
impl Send for PageFaultTimingSource
impl Sync for PageFaultTimingSource
impl Unpin for PageFaultTimingSource
impl UnsafeUnpin for PageFaultTimingSource
impl UnwindSafe for PageFaultTimingSource
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