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