Type Alias page_table::PagingResult

source ·
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PagingError)

Contains the error value