Skip to main content

PhysFrame

Struct PhysFrame 

Source
pub struct PhysFrame<S: PageSize = Size4KiB> { /* private fields */ }
Expand description

A physical memory frame.

Implementations§

Source§

impl<S: PageSize> PhysFrame<S>

Source

pub const fn from_start_address( address: PhysAddr, ) -> Result<Self, AddressNotAligned>

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

Source

pub const unsafe fn from_start_address_unchecked( start_address: PhysAddr, ) -> Self

Returns the frame that starts at the given virtual address.

§Safety

The address must be correctly aligned.

Source

pub const fn from_pfn(pfn: u64) -> Self

Returns the frame by a physical frame number.

use x86_64::{PhysAddr, structures::paging::{PhysFrame, Size4KiB}};

assert_eq!(PhysFrame::<Size4KiB>::from_pfn(0x123), PhysFrame::<Size4KiB>::containing_address(PhysAddr::new(0x123000)));
§Panics

This function will panic if the resulting address is not valid.

Source

pub const fn try_from_pfn(pfn: u64) -> Result<Self, PfnNotValid>

Returns the frame by a physical frame number.

use x86_64::{PhysAddr, structures::paging::{PhysFrame, Size4KiB}};

assert_eq!(PhysFrame::<Size4KiB>::try_from_pfn(0x123), Ok(PhysFrame::<Size4KiB>::containing_address(PhysAddr::new(0x123000))));
§Error

This function will return an error if the resulting address is not valid.

Source

pub const unsafe fn from_pfn_unchecked(pfn: u64) -> Self

Returns the frame by a physical frame number.

§Safety

The resulting address must be valid.

Source

pub const fn containing_address(address: PhysAddr) -> Self

Returns the frame that contains the given physical address.

Source

pub const fn start_address(self) -> PhysAddr

Returns the start address of the frame.

Source

pub const fn size(self) -> u64

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

Source

pub const fn pfn(self) -> u64

Returns the PFN of the current frame.

The PFN is defined to be the address divided by the page size.

use x86_64::{PhysAddr, structures::paging::{PhysFrame, Size1GiB, Size2MiB, Size4KiB}};

assert_eq!(PhysFrame::<Size4KiB>::containing_address(PhysAddr::new(0x123000)).pfn(), 0x123);

// Note that this means that the PFN for the same address will be
// different for different page sizes.
assert_eq!(PhysFrame::<Size4KiB>::containing_address(PhysAddr::new(0xC000_0000)).pfn(), 0xC0000);
assert_eq!(PhysFrame::<Size2MiB>::containing_address(PhysAddr::new(0xC000_0000)).pfn(), 0x600);
assert_eq!(PhysFrame::<Size1GiB>::containing_address(PhysAddr::new(0xC000_0000)).pfn(), 0x3);
Source

pub const fn range(start: PhysFrame<S>, end: PhysFrame<S>) -> PhysFrameRange<S>

Returns a range of frames, exclusive end.

Source

pub const fn range_inclusive( start: PhysFrame<S>, end: PhysFrame<S>, ) -> PhysFrameRangeInclusive<S>

Returns a range of frames, inclusive end.

Trait Implementations§

Source§

impl<S: PageSize> Add<u64> for PhysFrame<S>

Source§

type Output = PhysFrame<S>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u64) -> Self::Output

Performs the + operation. Read more
Source§

impl<S: PageSize> AddAssign<u64> for PhysFrame<S>

Source§

fn add_assign(&mut self, rhs: u64)

Performs the += operation. Read more
Source§

impl<S: Clone + PageSize> Clone for PhysFrame<S>

Source§

fn clone(&self) -> PhysFrame<S>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable)§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S: Copy + PageSize> Copy for PhysFrame<S>

Source§

impl<S: PageSize> Debug for PhysFrame<S>

Source§

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

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

impl<S: Eq + PageSize> Eq for PhysFrame<S>

Source§

impl<S: Hash + PageSize> Hash for PhysFrame<S>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given [Hasher]. Read more
Source§

impl<S: Ord + PageSize> Ord for PhysFrame<S>

Source§

fn cmp(&self, other: &PhysFrame<S>) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0 (const: unstable)§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable)§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable)§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<S: PartialEq + PageSize> PartialEq for PhysFrame<S>

Source§

fn eq(&self, other: &PhysFrame<S>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable)§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<S: PartialOrd + PageSize> PartialOrd for PhysFrame<S>

Source§

fn partial_cmp(&self, other: &PhysFrame<S>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable)§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable)§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable)§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable)§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<S: PartialEq + PageSize> StructuralPartialEq for PhysFrame<S>

Source§

impl<S: PageSize> Sub for PhysFrame<S>

Source§

type Output = u64

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: PhysFrame<S>) -> Self::Output

Performs the - operation. Read more
Source§

impl<S: PageSize> Sub<u64> for PhysFrame<S>

Source§

type Output = PhysFrame<S>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u64) -> Self::Output

Performs the - operation. Read more
Source§

impl<S: PageSize> SubAssign<u64> for PhysFrame<S>

Source§

fn sub_assign(&mut self, rhs: u64)

Performs the -= operation. Read more

Auto Trait Implementations§

§

impl<S> Freeze for PhysFrame<S>

§

impl<S> RefUnwindSafe for PhysFrame<S>
where S: RefUnwindSafe,

§

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

§

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

§

impl<S> Unpin for PhysFrame<S>
where S: Unpin,

§

impl<S> UnsafeUnpin for PhysFrame<S>

§

impl<S> UnwindSafe for PhysFrame<S>
where S: UnwindSafe,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.