1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Traits for abstracting away frame allocation and deallocation.

use structures::paging::{PageSize, PhysFrame};

/// A trait for types that can allocate a frame of memory.
pub trait FrameAllocator<S: PageSize> {
    /// Allocate a frame of the appropriate size and return it if possible.
    fn alloc(&mut self) -> Option<PhysFrame<S>>;
}

/// A trait for types that can deallocate a frame of memory.
pub trait FrameDeallocator<S: PageSize> {
    /// Deallocate the given frame of memory.
    fn dealloc(&mut self, frame: PhysFrame<S>);
}