(engine_ipc_path: String)
| 62 | write!(f, "execution client error: {}", self.0) |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | impl std::error::Error for EngineClientError { |
| 67 | fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { |
| 68 | Some(&self.0) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | impl From<TransportError> for EngineClientError { |
| 73 | fn from(e: TransportError) -> Self { |
| 74 | EngineClientError(e) |
nothing calls this directly
no outgoing calls
no test coverage detected