pub type PeerResult<T> = Result<T, PeerError>;
enum PeerResult<T> { Ok(T), Err(PeerError), }
Contains the success value
Contains the error value