pub trait FrameAllocatorFor<P: PhysicalAddress> {
    fn alloc(&mut self) -> Option<FrameWith<P>>;
}
Expand description

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

Required methods

Allocate a frame of the appropriate size and return it if possible.

Implementors