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