swayipc_command_builder/commands/
unmark.rs1use super::*;
2
3impl Command<Unmark> {
4 pub fn all_identifier(self) -> Command<Valid> {
5 self.transmute()
6 }
7
8 pub fn identifier(self, identifier: impl AsRef<str>) -> Command<Valid> {
9 self.push_str(identifier).transmute()
10 }
11}