(&self, info: Value)
| 723 | } |
| 724 | |
| 725 | fn with_info(&self, info: Value) -> Self { |
| 726 | Self { |
| 727 | connection_id: self.connection_id, |
| 728 | created_at: self.created_at, |
| 729 | info, |
| 730 | outgoing: self.outgoing.clone(), |
| 731 | outbox: self.outbox.clone(), |
| 732 | outbox_notify: self.outbox_notify.clone(), |
| 733 | pending: self.pending.clone(), |
| 734 | next_request_id: self.next_request_id.clone(), |
| 735 | } |
| 736 | } |
| 737 | } |
| 738 | |
| 739 | async fn handle_incoming_message( |
no test coverage detected