1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Platform specific actions defined for wayland

use std::fmt;

#[cfg(feature = "wayland")]
/// Platform specific actions defined for wayland
pub mod wayland;

/// Platform specific actions defined for wayland
pub enum Action {
    /// Wayland Specific Actions
    #[cfg(feature = "wayland")]
    Wayland(wayland::Action),
}

impl fmt::Debug for Action {
    fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            #[cfg(feature = "wayland")]
            Action::Wayland(action) => action.fmt(_f),
            #[cfg(not(feature = "wayland"))]
            _ => Ok(()),
        }
    }
}