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>

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 number(&self) -> usize

Returns the 4K-sized number of this Frame.

pub fn start_address(&self) -> PhysicalAddress

Returns the PhysicalAddress at the start of this Frame.

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>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'f, P: PageSize> Deref for AllocatedFrame<'f, P>

§

type Target = Frame<P>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.