swayipc_command_builder/commands/
smart_gaps.rs1use super::*;
2
3impl Command<SmartGaps> {
4 pub fn on(self) -> Command<Valid> {
5 self.push_str("on").transmute()
6 }
7
8 pub fn off(self) -> Command<Valid> {
9 self.push_str("off").transmute()
10 }
11}