[][src]Struct x86_64::structures::paging::frame::PhysFrame

#[repr(C)]
pub struct PhysFrame<S: PageSize = Size4KiB> { /* fields omitted */ }

A physical memory frame.

Methods

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

pub fn from_start_address(address: PhysAddr) -> Result<Self, ()>[src]

Returns the frame that starts at the given virtual address.

Returns an error if the address is not correctly aligned (i.e. is not a valid frame start).

pub fn containing_address(address: PhysAddr) -> Self[src]

Returns the frame that contains the given physical address.

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).

Important traits for PhysFrameRange<S>
pub fn range(start: PhysFrame<S>, end: PhysFrame<S>) -> PhysFrameRange<S>[src]

Returns a range of frames, exclusive end.

Important traits for PhysFrameRangeInclusive<S>
pub fn range_inclusive(
    start: PhysFrame<S>,
    end: PhysFrame<S>
) -> PhysFrameRangeInclusive<S>
[src]

Returns a range of frames, inclusive end.

Trait Implementations

impl<S: PartialEq + PageSize> PartialEq<PhysFrame<S>> for PhysFrame<S>[src]

impl<S: Eq + PageSize> Eq for PhysFrame<S>[src]

impl<S: Ord + PageSize> Ord for PhysFrame<S>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<S: PartialOrd + PageSize> PartialOrd<PhysFrame<S>> for PhysFrame<S>[src]

impl<S: PageSize> Add<u64> for PhysFrame<S>[src]

type Output = Self

The resulting type after applying the + operator.

impl<S: PageSize> Sub<u64> for PhysFrame<S>[src]

type Output = Self

The resulting type after applying the - operator.

impl<S: PageSize> Sub<PhysFrame<S>> for PhysFrame<S>[src]

type Output = u64

The resulting type after applying the - operator.

impl<S: PageSize> AddAssign<u64> for PhysFrame<S>[src]

impl<S: PageSize> SubAssign<u64> for PhysFrame<S>[src]

impl<S: PageSize> Debug for PhysFrame<S>[src]

impl<S: Copy + PageSize> Copy for PhysFrame<S>[src]

impl<S: Clone + PageSize> Clone for PhysFrame<S>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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