pub type Result<T> = Result<T, P2PError>;
Result utilizing the P2PError as the error type.
enum Result<T> { Ok(T), Err(P2PError), }
Contains the success value
Contains the error value