pub type PagingResult<T = ()> = Result<T, PagingError>;
Expand description
The specialized Result
type for page table operations.
Aliased Type§
enum PagingResult<T = ()> {
Ok(T),
Err(PagingError),
}
pub type PagingResult<T = ()> = Result<T, PagingError>;
The specialized Result
type for page table operations.
enum PagingResult<T = ()> {
Ok(T),
Err(PagingError),
}