(&self, f: &mut std::fmt::Formatter<'_>)
| 107 | |
| 108 | impl std::fmt::Display for JsonRpcError { |
| 109 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 110 | write!(f, "{} (code: {})", self.message, self.code) |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | impl std::error::Error for JsonRpcError {} |
nothing calls this directly
no outgoing calls
no test coverage detected