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

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

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

Required Methods

Deallocate the given frame of memory.

Implementors