Type Definition kernel_hal::vm::PagingResult

source · []
pub type PagingResult<T = ()> = Result<T, PagingError>;
Expand description

Address translation result.

Trait Implementations

If self is Err(PagingError::NotMapped, ignores the error and returns Ok(()), otherwise remain unchanged. Read more