pub struct VmPage {
pub index: usize,
pub vm: usize,
pub addr: u64,
pub segment: usize,
pub state: Mutex<PageState>,
pub unk1: u8,
}Expand description
Implementation of vm_page structure.
Fields§
§index: usize§vm: usize§addr: u64§segment: usize§state: Mutex<PageState>This MUST be locked after free queue.
unk1: u8Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for VmPage
impl !RefUnwindSafe for VmPage
impl Send for VmPage
impl Sync for VmPage
impl Unpin for VmPage
impl UnwindSafe for VmPage
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.