Trait x86_64::structures::paging::FrameDeallocator[][src]

pub trait FrameDeallocator<S: PageSize> {
    unsafe fn deallocate_frame(&mut self, frame: PhysFrame<S>);
}

A trait for types that can deallocate a frame of memory.

Required methods

unsafe fn deallocate_frame(&mut self, frame: PhysFrame<S>)[src]

Deallocate the given unused frame.

Safety

The caller must ensure that the passed frame is unused.

Loading content...

Implementors

Loading content...