swayipc_command_builder/commands/
show_marks.rs

1use super::*;
2
3impl Command<ShowMarks> {
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}