Type Alias PfResult

Source
pub type PfResult<T> = Result<T, PfError>;

Aliased Type§

enum PfResult<T> {
    Ok(T),
    Err(PfError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PfError)

Contains the error value