(source: NetSource, op: &str, err: NetError)
| 551 | } |
| 552 | } |
| 553 | |
| 554 | impl Default for NetworkWorld { |
| 555 | fn default() -> Self { |
| 556 | Self::new() |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | fn net_error_event(source: NetSource, op: &str, err: NetError) -> NetworkEvent { |
| 561 | NetworkEvent { |
| 562 | source, |
| 563 | event: NetEvent::NetError { |
| 564 | op: op.to_string(), |
no outgoing calls
no test coverage detected