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