(result: ProxyExecResult)
| 57 | |
| 58 | impl From<ProxyExecResult> for ExecResult { |
| 59 | fn from(result: ProxyExecResult) -> Self { |
| 60 | Self { |
| 61 | result: ExecResultHolder::Proxy(result), |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | impl From<ExecResult> for ProxyExecResult { |
nothing calls this directly
no test coverage detected