(&self, f: &mut fmt::Formatter)
| 62 | impl error::Error for ErrorData {} |
| 63 | impl fmt::Display for ErrorData { |
| 64 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 65 | write!(f, "({}, {}, {})", self.code, self.message, self.data) |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | /// A rpc call is represented by sending a Request object to a Server. |
nothing calls this directly
no outgoing calls
no test coverage detected