Files
librepods/linux-rust/src/ui/messages.rs
T
Kavish Devar bf6630dbd1 linux-rust: implement bluetooth logic with ui
finally! only copying all ui from android to first release
2025-11-10 13:32:47 +05:30

11 lines
309 B
Rust

use crate::bluetooth::aacp::AACPEvent;
#[derive(Debug, Clone)]
pub enum BluetoothUIMessage {
OpenWindow,
DeviceConnected(String), // mac
DeviceDisconnected(String), // mac
AACPUIEvent(String, AACPEvent), // mac, event
ATTNotification(String, u16, Vec<u8>), // mac, handle, data
NoOp
}