pub struct VirtAddrNotValid(pub u64);
Expand description
An invalid virtual address.
Virutal addresses on aarch64 are invalid, if the topmost 12 bits are not the same. However, there are more restrictions (e.g., execption level 3 has only one address space) that are not encoded in this type.
Tuple Fields§
§0: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VirtAddrNotValid
impl RefUnwindSafe for VirtAddrNotValid
impl Send for VirtAddrNotValid
impl Sync for VirtAddrNotValid
impl Unpin for VirtAddrNotValid
impl UnwindSafe for VirtAddrNotValid
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