PResult

Type Alias PResult 

Source
pub type PResult<T> = Result<T, PhantomError>;

Aliased Type§

pub enum PResult<T> {
    Ok(T),
    Err(PhantomError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PhantomError)

Contains the error value