pub type GhostResult<T> = Result<T, GhostError>;
Expand description

Ghost Result Type.

Aliased Type§

enum GhostResult<T> {
    Ok(T),
    Err(GhostError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GhostError)

Contains the error value