PSResult

Type Alias PSResult 

Source
pub type PSResult<T> = Result<T, PSError>;

Aliased Type§

pub enum PSResult<T> {
    Ok(T),
    Err(PSError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PSError)

Contains the error value