(&self)
| 105 | |
| 106 | impl ImplNetwork for ObjNetwork { |
| 107 | fn ping(&self) -> String { |
| 108 | String::from("pong") |
| 109 | } |
| 110 | |
| 111 | fn wait(&self, d: u64) -> Pin<Box<dyn Future<Output = Result<String, Box<dyn error::Error>>>>> { |
| 112 | async move { |
no outgoing calls
no test coverage detected