pub type PosResult<T, E = PosError> = Result<T, E>;
Proof-of-Stake result
enum PosResult<T, E = PosError> { Ok(T), Err(E), }
Contains the success value
Contains the error value