pub struct EmuTranslateResult {
pub gpa: u64,
pub overlay_page: Option<bool>,
}
Expand description
The result of translate_gva on EmulatorSupport
.
Fields§
§gpa: u64
The GPA result of the translation.
overlay_page: Option<bool>
Whether the page is an overlay page. Not all implementations return overlay page or event_info yet, so these values are optional
Auto Trait Implementations§
impl Freeze for EmuTranslateResult
impl RefUnwindSafe for EmuTranslateResult
impl Send for EmuTranslateResult
impl Sync for EmuTranslateResult
impl Unpin for EmuTranslateResult
impl UnwindSafe for EmuTranslateResult
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