Struct frame_allocator::AllocatedFrame
source · pub struct AllocatedFrame<'f, P: PageSize> { /* private fields */ }
Expand description
A reference to a single frame within a range of AllocatedFrames
.
The lifetime of this type is tied to the lifetime of its owning AllocatedFrames
.
Methods from Deref<Target = Frame<P>>§
pub fn align_up(&self, alignment_4k_pages: usize) -> Frame<Page4K>
pub fn align_up(&self, alignment_4k_pages: usize) -> Frame<Page4K>
Returns a new Frame
that is aligned up from this Frame
to the nearest multiple of alignment_4k_pages
.
pub const MIN: Frame<P> = _
pub const MAX: Frame<P> = _
pub fn start_address(&self) -> PhysicalAddress
pub fn start_address(&self) -> PhysicalAddress
Returns the PhysicalAddress
at the start of this Frame
.
pub fn page_size(&self) -> MemChunkSize
pub fn page_size(&self) -> MemChunkSize
Returns the size of this Frame
.
Trait Implementations§
source§impl<'f, P: Debug + PageSize> Debug for AllocatedFrame<'f, P>
impl<'f, P: Debug + PageSize> Debug for AllocatedFrame<'f, P>
Auto Trait Implementations§
impl<'f, P> RefUnwindSafe for AllocatedFrame<'f, P>where P: RefUnwindSafe,
impl<'f, P> Send for AllocatedFrame<'f, P>where P: Send,
impl<'f, P> Sync for AllocatedFrame<'f, P>where P: Sync,
impl<'f, P> Unpin for AllocatedFrame<'f, P>where P: Unpin,
impl<'f, P> UnwindSafe for AllocatedFrame<'f, P>where P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more