pub struct VirtAddr(pub usize);
Expand description
virtual address
Tuple Fields§
§0: usize
Implementations§
source§impl VirtAddr
impl VirtAddr
sourcepub fn floor(&self) -> VirtPageNum
pub fn floor(&self) -> VirtPageNum
VirtAddr
->VirtPageNum
sourcepub fn ceil(&self) -> VirtPageNum
pub fn ceil(&self) -> VirtPageNum
VirtAddr
->VirtPageNum
sourcepub fn page_offset(&self) -> usize
pub fn page_offset(&self) -> usize
Get page offset
Trait Implementations§
source§impl From<VirtAddr> for VirtPageNum
impl From<VirtAddr> for VirtPageNum
source§impl From<VirtPageNum> for VirtAddr
impl From<VirtPageNum> for VirtAddr
source§fn from(v: VirtPageNum) -> Self
fn from(v: VirtPageNum) -> Self
Converts to this type from the input type.
source§impl Ord for VirtAddr
impl Ord for VirtAddr
source§impl PartialEq for VirtAddr
impl PartialEq for VirtAddr
source§impl PartialOrd for VirtAddr
impl PartialOrd for VirtAddr
1.0.0 · source§fn 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 moreimpl Copy for VirtAddr
impl Eq for VirtAddr
impl StructuralPartialEq for VirtAddr
Auto Trait Implementations§
impl Freeze for VirtAddr
impl RefUnwindSafe for VirtAddr
impl Send for VirtAddr
impl Sync for VirtAddr
impl Unpin for VirtAddr
impl UnwindSafe for VirtAddr
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more