[][src]Struct x86_64::structures::paging::UnusedPhysFrame

pub struct UnusedPhysFrame<S: PageSize = Size4KiB>(_);

Represents a physical frame that is not used for any mapping.

Methods

impl<S: PageSize> UnusedPhysFrame<S>[src]

pub unsafe fn new(frame: PhysFrame<S>) -> Self[src]

Creates a new UnusedPhysFrame from the given frame.

Safety

This method is unsafe because the caller must guarantee that the given frame is unused.

pub fn frame(self) -> PhysFrame<S>[src]

Returns the physical frame as PhysFrame type.

Methods from Deref<Target = PhysFrame<S>>

pub fn start_address(&self) -> PhysAddr[src]

Returns the start address of the frame.

pub fn size(&self) -> u64[src]

Returns the size the frame (4KB, 2MB or 1GB).

Trait Implementations

impl<S: Debug + PageSize> Debug for UnusedPhysFrame<S>[src]

impl<S: PageSize> Deref for UnusedPhysFrame<S>[src]

type Target = PhysFrame<S>

The resulting type after dereferencing.

impl<S: PageSize> DerefMut for UnusedPhysFrame<S>[src]

Auto Trait Implementations

impl<S> Send for UnusedPhysFrame<S> where
    S: Send

impl<S> Sync for UnusedPhysFrame<S> where
    S: Sync

impl<S> Unpin for UnusedPhysFrame<S> where
    S: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.