Type Alias possum::PubResult

source ·
pub type PubResult<T> = Result<T, Error>;
Expand description

Type to be exposed eventually from the lib instead of anyhow. Should be useful for the C API.

Aliased Type§

enum PubResult<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value