pub trait FrameDeallocatorFor<P: PhysicalAddress> {
    fn dealloc(&mut self, frame: FrameWith<P>);
}
Expand description

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

Required methods

Deallocate the given frame of memory.

Implementors