Files
wayvr/wlx-common/src/overlays.rs
2025-11-25 00:21:51 +01:00

18 lines
342 B
Rust

use idmap_derive::IntegerId;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Copy, PartialEq, Eq, IntegerId, Serialize, Deserialize)]
pub enum ToastTopic {
System,
DesktopNotification,
XSNotification,
IpdChange,
}
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum ToastDisplayMethod {
Hide,
Center,
Watch,
}