Place the `FlightData` in the queue to send
(&mut self, mut data: FlightData)
| 330 | |
| 331 | /// Place the `FlightData` in the queue to send |
| 332 | fn queue_message(&mut self, mut data: FlightData) { |
| 333 | if let Some(descriptor) = self.descriptor.take() { |
| 334 | data.flight_descriptor = Some(descriptor); |
| 335 | } |
| 336 | self.queue.push_back(data); |
| 337 | } |
| 338 | |
| 339 | /// Place the `FlightData` in the queue to send |
| 340 | fn queue_messages(&mut self, datas: impl IntoIterator<Item = FlightData>) { |
no test coverage detected