Struct os::mm::PhysPageNum
source · [−]pub struct PhysPageNum(pub usize);
Expand description
physical page number
Tuple Fields
0: usize
Implementations
sourceimpl PhysPageNum
impl PhysPageNum
sourcepub fn get_pte_array(&self) -> &'static mut [PageTableEntry]
pub fn get_pte_array(&self) -> &'static mut [PageTableEntry]
Get PageTableEntry
on PhysPageNum
sourcepub fn get_bytes_array(&self) -> &'static mut [u8]
pub fn get_bytes_array(&self) -> &'static mut [u8]
sourcepub fn get_mut<T>(&self) -> &'static mut T
pub fn get_mut<T>(&self) -> &'static mut T
Trait Implementations
sourceimpl Clone for PhysPageNum
impl Clone for PhysPageNum
sourcefn clone(&self) -> PhysPageNum
fn clone(&self) -> PhysPageNum
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PhysPageNum
impl Debug for PhysPageNum
sourceimpl From<PhysAddr> for PhysPageNum
impl From<PhysAddr> for PhysPageNum
sourceimpl From<PhysPageNum> for usize
impl From<PhysPageNum> for usize
sourcefn from(v: PhysPageNum) -> Self
fn from(v: PhysPageNum) -> Self
Converts to this type from the input type.
sourceimpl From<PhysPageNum> for PhysAddr
impl From<PhysPageNum> for PhysAddr
sourcefn from(v: PhysPageNum) -> Self
fn from(v: PhysPageNum) -> Self
Converts to this type from the input type.
sourceimpl From<usize> for PhysPageNum
impl From<usize> for PhysPageNum
sourceimpl Ord for PhysPageNum
impl Ord for PhysPageNum
sourceimpl PartialEq<PhysPageNum> for PhysPageNum
impl PartialEq<PhysPageNum> for PhysPageNum
sourcefn eq(&self, other: &PhysPageNum) -> bool
fn eq(&self, other: &PhysPageNum) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PhysPageNum) -> bool
fn ne(&self, other: &PhysPageNum) -> bool
This method tests for !=
.
sourceimpl PartialOrd<PhysPageNum> for PhysPageNum
impl PartialOrd<PhysPageNum> for PhysPageNum
sourcefn partial_cmp(&self, other: &PhysPageNum) -> Option<Ordering>
fn partial_cmp(&self, other: &PhysPageNum) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for PhysPageNum
impl Eq for PhysPageNum
impl StructuralEq for PhysPageNum
impl StructuralPartialEq for PhysPageNum
Auto Trait Implementations
impl RefUnwindSafe for PhysPageNum
impl Send for PhysPageNum
impl Sync for PhysPageNum
impl Unpin for PhysPageNum
impl UnwindSafe for PhysPageNum
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more