swayipc_command_builder/commands/popup_during_fullscreen.rs
1use super::*;
2
3impl Command<PopupDuringFullscreen> {
4 pub fn smart(self) -> Command<Valid> {
5 self.push_str("smart").transmute()
6 }
7
8 pub fn ignore(self) -> Command<Valid> {
9 self.push_str("ignore").transmute()
10 }
11
12 pub fn leave_fullscreen(self) -> Command<Valid> {
13 self.push_str("leave_fullscreen").transmute()
14 }
15}