pub enum PTW_Error {
PTW_Invalid_Addr(()),
PTW_Access(()),
PTW_Invalid_PTE(()),
PTW_No_Permission(()),
PTW_Misaligned(()),
PTW_PTE_Update(()),
PTW_Ext_Error(ext_ptw_error),
}Expand description
PTW_Error
Generated from the Sail sources at riscv_vmem_ptw.sail L17-25.
Variants§
PTW_Invalid_Addr(())
PTW_Access(())
PTW_Invalid_PTE(())
PTW_No_Permission(())
PTW_Misaligned(())
PTW_PTE_Update(())
PTW_Ext_Error(ext_ptw_error)
Trait Implementations§
impl Copy for PTW_Error
impl Eq for PTW_Error
impl StructuralPartialEq for PTW_Error
Auto Trait Implementations§
impl Freeze for PTW_Error
impl RefUnwindSafe for PTW_Error
impl Send for PTW_Error
impl Sync for PTW_Error
impl Unpin for PTW_Error
impl UnwindSafe for PTW_Error
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