pub enum AddrTranslationError {
Virt(Gva, PxeNotPresent),
Phys(Gpa),
}
Variants§
Virt(Gva, PxeNotPresent)
Phys(Gpa)
Trait Implementations§
Source§impl Debug for AddrTranslationError
impl Debug for AddrTranslationError
Source§impl Display for AddrTranslationError
impl Display for AddrTranslationError
Source§impl Error for AddrTranslationError
impl Error for AddrTranslationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<AddrTranslationError> for KdmpParserError
impl From<AddrTranslationError> for KdmpParserError
Source§fn from(source: AddrTranslationError) -> Self
fn from(source: AddrTranslationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddrTranslationError
impl RefUnwindSafe for AddrTranslationError
impl Send for AddrTranslationError
impl Sync for AddrTranslationError
impl Unpin for AddrTranslationError
impl UnwindSafe for AddrTranslationError
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