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