| 36 | // 应用状态:保存广播通道的发送端 |
| 37 | #[derive(Clone)] |
| 38 | struct AppState { |
| 39 | // 使用 broadcast channel,支持多个浏览器同时观看 |
| 40 | // 发送的是 JPEG 字节流 |
| 41 | tx: broadcast::Sender<Bytes>, |
| 42 | } |
| 43 | |
| 44 | #[cfg(target_os = "linux")] |
| 45 | #[tokio::main] |
nothing calls this directly
no outgoing calls
no test coverage detected