PagingResult

Type Alias PagingResult 

Source
pub type PagingResult<T = ()> = Result<T, PagingError>;
Expand description

The specialized Result type for page table operations.

Aliased Type§

pub 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