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