pub type PosResult<T, E = PosError> = Result<T, E>;
Expand description

Proof-of-Stake result

Aliased Type§

enum PosResult<T, E = PosError> {
    Ok(T),
    Err(E),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(E)

Contains the error value