pub trait PageFault: Context {
    // Required methods
    fn fault_vaddr(&self) -> VAddr;
    fn debug_error_code(&self) -> &dyn Debug;
    fn display_error_code(&self) -> &dyn Display;
}

Required Methods§

Implementors§